aboutsummaryrefslogtreecommitdiff
path: root/gcc/cppmain.c
diff options
context:
space:
mode:
authorZack Weinberg <zack@wolery.cumb.org>2000-08-02 07:08:49 +0000
committerZack Weinberg <zack@gcc.gnu.org>2000-08-02 07:08:49 +0000
commit5ef865d5709f9c917e1152ee5246906983e23725 (patch)
tree5449dc33f09873b105cb47551859fae03a5f1a89 /gcc/cppmain.c
parenta7a4fd1776384e896797de1f06773ca1e7e908d4 (diff)
downloadgcc-5ef865d5709f9c917e1152ee5246906983e23725.zip
gcc-5ef865d5709f9c917e1152ee5246906983e23725.tar.gz
gcc-5ef865d5709f9c917e1152ee5246906983e23725.tar.bz2
cppexp.c, [...]: Do not use 'legal' or 'illegal' in error messages and comments.
* cppexp.c, cppinit.c, cpplex.c, cpplib.c, cppmacro.c, cppspec.c: Do not use 'legal' or 'illegal' in error messages and comments. * cppmain.c (cb_define, cb_undef): Don't generate any output if not done_initializing. * cpplex.c (maybe_paste_with_next): When the token after a ## is an omitted rest argument, only delete the token before it if that token is a comma. Do not warn about bogus token pastes for , ## rest_arg. * cpp.texi: Update. * cpp.1: Regenerate. * gcc.dg/cpp/macsyntx.c: Fix error regexp. From-SVN: r35421
Diffstat (limited to 'gcc/cppmain.c')
-rw-r--r--gcc/cppmain.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/gcc/cppmain.c b/gcc/cppmain.c
index 0af5442..6fc7c33 100644
--- a/gcc/cppmain.c
+++ b/gcc/cppmain.c
@@ -145,11 +145,14 @@ cb_define (pfile, hash)
cpp_reader *pfile;
cpp_hashnode *hash;
{
- cpp_printf (pfile, &parse_out, "#define %s", hash->name);
- if (CPP_OPTION (pfile, debug_output)
- || CPP_OPTION (pfile, dump_macros) == dump_definitions)
- cpp_dump_definition (pfile, parse_out.outf, hash);
- putc ('\n', parse_out.outf);
+ if (pfile->done_initializing)
+ {
+ cpp_printf (pfile, &parse_out, "#define %s", hash->name);
+ if (CPP_OPTION (pfile, debug_output)
+ || CPP_OPTION (pfile, dump_macros) == dump_definitions)
+ cpp_dump_definition (pfile, parse_out.outf, hash);
+ putc ('\n', parse_out.outf);
+ }
}
static void
@@ -157,7 +160,8 @@ cb_undef (pfile, hash)
cpp_reader *pfile;
cpp_hashnode *hash;
{
- cpp_printf (pfile, &parse_out, "#undef %s\n", hash->name);
+ if (pfile->done_initializing)
+ cpp_printf (pfile, &parse_out, "#undef %s\n", hash->name);
}
static void