diff options
author | tschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-28 19:06:44 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-05-08 10:18:28 -0600 |
commit | 8458514f6aa55ed139c0d28c6822ef98bc9f3497 (patch) | |
tree | e85ed21f9c1966d323a3f02bbc6edf79ce0b7d24 /libiberty/cp-demangle.c | |
parent | a18138132bd35df3ebbcc6d39091c6e713892b53 (diff) | |
download | gdb-8458514f6aa55ed139c0d28c6822ef98bc9f3497.zip gdb-8458514f6aa55ed139c0d28c6822ef98bc9f3497.tar.gz gdb-8458514f6aa55ed139c0d28c6822ef98bc9f3497.tar.bz2 |
Avoid "'dc' may be uninitialized" warning.
libiberty/
* cp-demangle.c (d_demangle_callback): Put an abort call in place,
to help the compiler.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@207200 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/cp-demangle.c')
-rw-r--r-- | libiberty/cp-demangle.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libiberty/cp-demangle.c b/libiberty/cp-demangle.c index bf2ffa9..3d5d33e 100644 --- a/libiberty/cp-demangle.c +++ b/libiberty/cp-demangle.c @@ -1,5 +1,5 @@ /* Demangler for g++ V3 ABI. - Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 + Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2014 Free Software Foundation, Inc. Written by Ian Lance Taylor <ian@wasabisystems.com>. @@ -5824,6 +5824,8 @@ d_demangle_callback (const char *mangled, int options, NULL); d_advance (&di, strlen (d_str (&di))); break; + default: + abort (); /* We have listed all the cases. */ } /* If DMGL_PARAMS is set, then if we didn't consume the entire |