mirror of git://gcc.gnu.org/git/gcc.git
re PR c/34867 (valgrind error indication in testsuite from c-lex.c:996:c_lex_with_flags for gcc.dg/cpp/charconst.c)
2008-06-27 Laurynas Biveinis <laurynas.biveinis@gmail.com> PR c/34867 * c-lex.c (lex_charconst): Initialize unsignedp. From-SVN: r137175
This commit is contained in:
parent
fa52081d86
commit
098b9c467c
|
@ -1,3 +1,8 @@
|
||||||
|
2008-06-27 Laurynas Biveinis <laurynas.biveinis@gmail.com>
|
||||||
|
|
||||||
|
PR c/34867
|
||||||
|
* c-lex.c (lex_charconst): Initialize unsignedp.
|
||||||
|
|
||||||
2008-06-27 Olivier Hainque <hainque@adacore.com>
|
2008-06-27 Olivier Hainque <hainque@adacore.com>
|
||||||
|
|
||||||
* gimplify.c (gimplify_modify_expr_to_memset): Assert our
|
* gimplify.c (gimplify_modify_expr_to_memset): Assert our
|
||||||
|
|
|
@ -977,7 +977,7 @@ lex_charconst (const cpp_token *token)
|
||||||
cppchar_t result;
|
cppchar_t result;
|
||||||
tree type, value;
|
tree type, value;
|
||||||
unsigned int chars_seen;
|
unsigned int chars_seen;
|
||||||
int unsignedp;
|
int unsignedp = 0;
|
||||||
|
|
||||||
result = cpp_interpret_charconst (parse_in, token,
|
result = cpp_interpret_charconst (parse_in, token,
|
||||||
&chars_seen, &unsignedp);
|
&chars_seen, &unsignedp);
|
||||||
|
|
Loading…
Reference in New Issue