Commit d947ada0 by Jakub Jelinek Committed by Jakub Jelinek

re PR preprocessor/43642 (FAIL: c-c++-common/raw-string-1.c)

	PR preprocessor/43642
	* lex.c (lex_raw_string): Change type of TYPE variable to
	unsigned char.

From-SVN: r157979
parent 1ac5e52c
2010-04-06 Jakub Jelinek <jakub@redhat.com>
PR preprocessor/43642
* lex.c (lex_raw_string): Change type of TYPE variable to
unsigned char.
2010-04-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 2010-04-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* aclocal.m4: Regenerate. * aclocal.m4: Regenerate.
......
...@@ -828,7 +828,7 @@ lex_raw_string (cpp_reader *pfile, cpp_token *token, const uchar *base, ...@@ -828,7 +828,7 @@ lex_raw_string (cpp_reader *pfile, cpp_token *token, const uchar *base,
/* Don't warn about this trigraph in /* Don't warn about this trigraph in
_cpp_process_line_notes, since trigraphs show up as _cpp_process_line_notes, since trigraphs show up as
trigraphs in raw strings. */ trigraphs in raw strings. */
unsigned type = note->type; uchar type = note->type;
note->type = 0; note->type = 0;
if (!CPP_OPTION (pfile, trigraphs)) if (!CPP_OPTION (pfile, trigraphs))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment