diff options
author | Ian Lance Taylor <iant@google.com> | 2009-06-08 04:00:50 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2009-06-08 04:00:50 +0000 |
commit | cdb884681d2b2f835e4457d84648b82d55e71262 (patch) | |
tree | 4bd535229794d01698a0f16070f3eb455edc1fcf /gcc/java/jcf-parse.c | |
parent | 36b31e072b92b7ba2c91b01a49b370abe6b12498 (diff) | |
download | gcc-cdb884681d2b2f835e4457d84648b82d55e71262.zip gcc-cdb884681d2b2f835e4457d84648b82d55e71262.tar.gz gcc-cdb884681d2b2f835e4457d84648b82d55e71262.tar.bz2 |
dwarf2.h (enum dwarf_location_atom): Add INTERNAL_DW_OP_tls_addr.
./: * dwarf2.h (enum dwarf_location_atom): Add
INTERNAL_DW_OP_tls_addr.
* dwarf2out.c (INTERNAL_DW_OP_tls_addr): Don't #define.
* c-common.c (c_do_switch_warnings): Don't exit early for -Wswitch
with no default node. Change warning with %H to warning_at.
Don't clear warn_switch around case checking.
* doc/invoke.texi (Warning Options): Clarify distinction between
-Wswitch and -Wswitch-enum.
java/:
* jcf-parse.c (handle_constant): Change local variable 'kind' to
unsigned int.
testsuite/:
* g++.dg/warn/Wswitch-3.C: New testcase.
* gcc.dg/Wswitch.c: Adjust for -Wswitch change.
* gcc.dg/Wswitch-enum-error.c: Likewise.
* gcc.dg/Wswitch-error.c: Likewise.
From-SVN: r148270
Diffstat (limited to 'gcc/java/jcf-parse.c')
-rw-r--r-- | gcc/java/jcf-parse.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/java/jcf-parse.c b/gcc/java/jcf-parse.c index e3b9331..f28acb0 100644 --- a/gcc/java/jcf-parse.c +++ b/gcc/java/jcf-parse.c @@ -498,7 +498,7 @@ handle_long_constant (JCF *jcf, CPool *cpool, enum cpool_tag kind, static uint16 handle_constant (JCF *jcf, int index, enum cpool_tag purpose) { - enum cpool_tag kind; + unsigned int kind; CPool *cpool = cpool_for_class (output_class); if (index == 0) @@ -507,7 +507,7 @@ handle_constant (JCF *jcf, int index, enum cpool_tag purpose) if (! CPOOL_INDEX_IN_RANGE (&jcf->cpool, index)) error ("<constant pool index %d not in range>", index); - kind = (enum cpool_tag) JPOOL_TAG (jcf, index); + kind = JPOOL_TAG (jcf, index); if ((kind & ~CONSTANT_ResolvedFlag) != purpose) { @@ -555,12 +555,12 @@ handle_constant (JCF *jcf, int index, enum cpool_tag purpose) break; case CONSTANT_Long: - index = handle_long_constant (jcf, cpool, kind, index, + index = handle_long_constant (jcf, cpool, CONSTANT_Long, index, WORDS_BIG_ENDIAN); break; case CONSTANT_Double: - index = handle_long_constant (jcf, cpool, kind, index, + index = handle_long_constant (jcf, cpool, CONSTANT_Double, index, FLOAT_WORDS_BIG_ENDIAN); break; |