diff options
author | Neil Booth <neilb@earthling.net> | 2000-11-26 17:31:13 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2000-11-26 17:31:13 +0000 |
commit | bdb05a7b49ee8569b9efa1b0e0401b3026e1034e (patch) | |
tree | b125a3451c60a8ac14f5f3f3cd8afb06f601958a /gcc/cppmain.c | |
parent | e1085962754472b391d366d591f66e2413c8faa7 (diff) | |
download | gcc-bdb05a7b49ee8569b9efa1b0e0401b3026e1034e.zip gcc-bdb05a7b49ee8569b9efa1b0e0401b3026e1034e.tar.gz gcc-bdb05a7b49ee8569b9efa1b0e0401b3026e1034e.tar.bz2 |
cpplib.h (struct cpp_reader): Remove lang_asm.
* cpplib.h (struct cpp_reader): Remove lang_asm.
(struct cpp_options): Remove c89. New members lang,
extended_numbers.
* cppexp.c (parse_number): Use them.
* cpphash.h (VALID_SIGN): Use them.
* cppinit.c (set_lang, cpp_start_read): Update.
* cpplex.c (parse_string, _cpp_lex_token): Update.
* cpplib.c (_cpp_handle_directive): Update.
* cppmacro.c (parse_args): Update.
* cppmain.c (scan_buffer): Update.
From-SVN: r37761
Diffstat (limited to 'gcc/cppmain.c')
-rw-r--r-- | gcc/cppmain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cppmain.c b/gcc/cppmain.c index d530e7d..4e096c4 100644 --- a/gcc/cppmain.c +++ b/gcc/cppmain.c @@ -199,7 +199,7 @@ scan_buffer (pfile) } else if (print.printed && ! (token->flags & PREV_WHITE) - && ! CPP_OPTION (pfile, lang_asm) + && CPP_OPTION (pfile, lang) != CLK_ASM && cpp_avoid_paste (pfile, &tokens[1 - index], token)) token->flags |= PREV_WHITE; |