diff options
author | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-08-16 00:05:29 +0000 |
---|---|---|
committer | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-08-16 00:05:29 +0000 |
commit | 333b5b5444981a5f9ff808afccdfbd82e5a02c04 (patch) | |
tree | 47c003e5fda0d849252fa5da30922b5b0e325a33 /gcc/java/verify.c | |
parent | 1f6ce78d4b906cea7ef4e10eb59c772d61c68aeb (diff) | |
download | gcc-333b5b5444981a5f9ff808afccdfbd82e5a02c04.tar.gz |
2000-08-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
* jcf-write.c (generate_bytecode_conditional): Re-installed lost
Jan 6 2000 patch.
(generate_bytecode_insns): Check `nargs' before emitting it.
* verify.c (merge_type_state): Fixed typo.
* ChangeLog: Fixed typo in some jcf-write.c entries mentioning
generate_bytecode_{conditional,insns}.
(http://gcc.gnu.org/ml/gcc-patches/2000-08/msg00617.html)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35733 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/verify.c')
-rw-r--r-- | gcc/java/verify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/verify.c b/gcc/java/verify.c index 3aff5e45955..4c2e4c8b1d3 100644 --- a/gcc/java/verify.c +++ b/gcc/java/verify.c @@ -212,7 +212,7 @@ int merge_type_state (label) tree label; { - int nlocals = DECL_MAX_LOCALS(current_function_decl); + int nlocals = DECL_MAX_LOCALS (current_function_decl); int cur_length = stack_pointer + nlocals; tree vec = LABEL_TYPE_STATE (label); tree return_map; |