diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-02 22:50:55 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-02 22:50:55 +0000 |
commit | b93c7be0687bc071a650168fc660f5a71cbcd99d (patch) | |
tree | b00fb305180d6ad00464b0f8d26982c399a9faa0 /gcc/config/convex | |
parent | 19a641b96ce165ae96683095b39c6518f357dd4d (diff) | |
download | gcc-b93c7be0687bc071a650168fc660f5a71cbcd99d.tar.gz |
* cppinit.c (cpp_start_read): Turn off -Wtraditional if
processing C++.
* cpplib.c (_cpp_handle_directive): Improve warnings for
traditional C and indented directives.
* enquire.c, gsyslimits.h, limity.h, config/convex/fixinc.convex,
fixinc/fixinc.irix, fixinc/fixinc.sco, fixinc/fixinc.wrap,
fixinc/inclhack.def: Indent the # of #include_next one space.
* cp/rtti.c: Un-indent #if and #endif.
* cppexp.c (_cpp_parse_expr): If lex returns '#', it's a
syntax error, but an error has already been printed.
* cpplex.c (_cpp_parse_assertion): Give a more specific error
message when called with nothing remaining on the line.
(_cpp_lex_token): If _cpp_parse_assertion fails, return an
OTHER token, not an ASSERTION.
* cpplib.c (do_assert): When we create a 'base' node, clear
its aschain pointer.
* gcc.c-torture/compile/981211-1.c: Move to...
* gcc.dg/cpp-as1.c: ...here.
* gcc.dg/cpp-as2.c: New file.
* gcc.dg/cpp-tradwarn1.c: Change warning regexps to match the
compiler.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32870 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/convex')
-rw-r--r-- | gcc/config/convex/fixinc.convex | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/convex/fixinc.convex b/gcc/config/convex/fixinc.convex index 0dc5f302c8c..c14dcd42b03 100644 --- a/gcc/config/convex/fixinc.convex +++ b/gcc/config/convex/fixinc.convex @@ -15,7 +15,7 @@ sed 's/^@//' > "include/limits.h" <<'@//E*O*F include/limits.h//' #ifndef _LIMITS_H #define _LIMITS_H -#include_next <limits.h> + #include_next <limits.h> /* Minimum and maximum values a `char' can hold. */ #ifdef __CHAR_UNSIGNED__ @@ -34,7 +34,7 @@ sed 's/^@//' > "include/math.h" <<'@//E*O*F include/math.h//' #ifndef _MATH_H #define _MATH_H -#include_next <math.h> + #include_next <math.h> #undef HUGE_VAL @@ -386,7 +386,7 @@ typedef __WCHAR_TYPE__ wchar_t; #endif /* __WCHAR_T */ -#include_next <stddef.h> + #include_next <stddef.h> #endif /* _STDDEF_H */ @//E*O*F include/stddef.h// @@ -400,12 +400,12 @@ sed 's/^@//' > "include/stdlib.h" <<'@//E*O*F include/stdlib.h//' #if _CONVEX_SOURCE #define alloca __non_builtin_alloca -#include_next <stdlib.h> + #include_next <stdlib.h> #undef alloca #else -#include_next <stdlib.h> + #include_next <stdlib.h> #endif /* _CONVEX_SOURCE */ |