diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-17 22:51:35 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-17 22:51:35 +0000 |
commit | 52d1f7e09fbb0e906f028730c1754701aebb4fb1 (patch) | |
tree | b6b89504cc8a80078f7f29637752de51fc170101 /gcc/java/jcf-dump.c | |
parent | 638a142aa3f33614e5d1cccc7c487e1b8bbc90e3 (diff) | |
download | gcc-52d1f7e09fbb0e906f028730c1754701aebb4fb1.tar.gz |
* class.c (ident_subst): Always alloca buffer.
* java-opcodes.h (LAST_AND_UNUSED_JAVA_OPCODE): Add this dummy
opcode after including javaop.def.
* jcf-dump.c (CHECK_PC_IN_RANGE): Return 0 from the arm of the
conditional expression that exits, to avoid warnings.
* verify.c (CHECK_PC_IN_RANGE): Mark the __GNUC__ definition as
a user of an extension.
* win32-host.c: Move check down to have non-empty file when
WIN32 is not defined.
* Make-lang.in (java-warn): Add STRICT_WARN.
(java/jcf-io.o-warn): Don't have Werror for this file.
* jcf-io.c (caching_stat): Add FIXME for non-POSIX scandir use.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89184 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/jcf-dump.c')
-rw-r--r-- | gcc/java/jcf-dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/jcf-dump.c b/gcc/java/jcf-dump.c index 2984c825c4b..5f25369e0ce 100644 --- a/gcc/java/jcf-dump.c +++ b/gcc/java/jcf-dump.c @@ -1181,7 +1181,7 @@ disassemble_method (JCF* jcf, const unsigned char *byte_ops, int len) #define VAR_INDEX_2 (saw_index = 1, IMMEDIATE_u2) #define CHECK_PC_IN_RANGE(PC) (PC < 0 || PC > len ? \ - (fprintf(stderr, _("Bad byte codes.\n")), exit(-1)) : 1) + (fprintf(stderr, _("Bad byte codes.\n")), exit(-1), 0) : 1) /* Print out operand (if not implied by the opcode) for PUSCH opcodes. These all push a constant onto the opcode stack. */ |