diff options
author | Jakub Jelinek <jakub@redhat.com> | 2016-02-05 20:39:48 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2016-02-05 20:39:48 +0100 |
commit | b5c1c988528a8761d802e923fe0a94160810c732 (patch) | |
tree | 25ec72b899a14342869ac614655061632af0f850 /libcpp/ChangeLog | |
parent | 0fd9d4921f7ba2fc910078dd5271da6e8e1c9e85 (diff) | |
download | gcc-b5c1c988528a8761d802e923fe0a94160810c732.zip gcc-b5c1c988528a8761d802e923fe0a94160810c732.tar.gz gcc-b5c1c988528a8761d802e923fe0a94160810c732.tar.bz2 |
re PR c++/69628 (Conditional jump or move depends on uninitialised value(s) in lex_charconst(cpp_token const*) (c-lex.c:1252))
PR c++/69628
* charset.c (cpp_interpret_charconst): Clear *PCHARS_SEEN
and *UNSIGNEDP if bailing out early due to errors.
* g++.dg/parse/pr69628.C: New test.
From-SVN: r233186
Diffstat (limited to 'libcpp/ChangeLog')
-rw-r--r-- | libcpp/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index 10d7197..385b965 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,9 @@ +2016-02-05 Jakub Jelinek <jakub@redhat.com> + + PR c++/69628 + * charset.c (cpp_interpret_charconst): Clear *PCHARS_SEEN + and *UNSIGNEDP if bailing out early due to errors. + 2016-01-28 Jakub Jelinek <jakub@redhat.com> PR pch/68176 |