diff options
author | Jason Merrill <jason@yorick.cygnus.com> | 1999-09-23 20:40:51 +0000 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 1999-09-23 16:40:51 -0400 |
commit | c857e3b4706931f12b0aeeb8442b3893af4818a4 (patch) | |
tree | 22a12b25398a01706c741fc38e483860e8123264 /gcc | |
parent | 43fa63024dfdcab90ae12f62e36497c2979f8665 (diff) | |
download | gcc-c857e3b4706931f12b0aeeb8442b3893af4818a4.zip gcc-c857e3b4706931f12b0aeeb8442b3893af4818a4.tar.gz gcc-c857e3b4706931f12b0aeeb8442b3893af4818a4.tar.bz2 |
* cpplib.h (CPP_PREPROCESSED): New macro.
From-SVN: r29636
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 11 | ||||
-rw-r--r-- | gcc/cpplib.h | 1 |
2 files changed, 7 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 032c57b..3d81cc7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +Thu Sep 23 13:40:02 1999 Jason Merrill <jason@yorick.cygnus.com> + + * cpplib.h (CPP_PREPROCESSED): New macro. + * cpplib.c (handle_directive): Don't complain about `# NUMBER' if + we're seeing this input for a second time. + Thu Sep 23 12:54:49 1999 Alex Samuel <samuel@codesourcery.com> * emit-rtl.c (init_emit_once): Initialize modes first. @@ -21,11 +27,6 @@ Sun Sep 19 01:23:23 1999 Alex Samuel <samuel@codesourcery.com> (output_func_start_profiler): Likewise. * c-typeck.c (digest_init): Check if init is error_mark_node. -Wed Sep 22 12:04:58 1999 Jason Merrill <jason@yorick.cygnus.com> - - * cpplib.c (handle_directive): Don't complain about `# NUMBER' if - we're seeing this input for a second time. - Thu Sep 23 12:59:14 1999 Alex Samuel <samuel@codesourcery.com> Richard Henderson <rth@cygnus.com> diff --git a/gcc/cpplib.h b/gcc/cpplib.h index daff0c6..765daa1 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -513,6 +513,7 @@ struct cpp_options { #define CPP_WARN_UNDEF(PFILE) (CPP_OPTIONS(PFILE)->warn_undef) #define CPP_C89(PFILE) (CPP_OPTIONS(PFILE)->c89) #define CPP_PEDANTIC(PFILE) (CPP_OPTIONS (PFILE)->pedantic) +#define CPP_PREPROCESSED(PFILE) (CPP_OPTIONS (PFILE)->preprocessed) #define CPP_PRINT_DEPS(PFILE) (CPP_OPTIONS (PFILE)->print_deps) /* List of directories to look for include files in. */ |