diff options
| author | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-08 02:22:39 +0000 |
|---|---|---|
| committer | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-08 02:22:39 +0000 |
| commit | 713ada26bf60745052170ba3e9d2bb33709bfe85 (patch) | |
| tree | caddd943d0feebb2688548ce88025d2801c916a3 | |
| parent | 5bde7f2662875c2d2253deff987a193d99c45db3 (diff) | |
| download | ppe42-gcc-713ada26bf60745052170ba3e9d2bb33709bfe85.tar.gz ppe42-gcc-713ada26bf60745052170ba3e9d2bb33709bfe85.zip | |
Tue Oct 3 13:44:37 2000 Alexandre Petit-Bianco <apbianco@cygnus.com>
* decl.c (find_local_variable): Removed uncessary type check and
fixed range check typo. From Corey Minyard.
Wed Sep 13 16:06:52 2000 Alexandre Petit-Bianco <apbianco@cygnus.com>
* decl.c (give_name_to_locals): New local `code_offset'. Call
`maybe_adjust_start_pc.'
* expr.c (note_instructions): New function.
(expand_byte_code): Don't collect insn starts here.
(peek_opcode_at_pc): New function.
(maybe_adjust_start_pc): Likewise.
* java-tree.h (maybe_adjust_start_pc): Declare.
(note_instructions): Likewise.
* jcf-parse.c (parse_class_file): Call `note_instructions.'
Wed Sep 13 11:50:35 2000 Alexandre Petit-Bianco <apbianco@cygnus.com>
* parse.y (field_access:): Fixed indentation.
(qualify_ambiguous_name): Properly qualify `this.a[b].c'.
(Missing piece to http://gcc.gnu.org/ml/gcc-patches/2000-10/msg00067.html)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36784 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/java/jcf-parse.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/java/jcf-parse.c b/gcc/java/jcf-parse.c index ccfba7d7f86..71503e3cdf5 100644 --- a/gcc/java/jcf-parse.c +++ b/gcc/java/jcf-parse.c @@ -734,6 +734,8 @@ parse_class_file () start_java_method (method); + note_instructions (jcf, method); + give_name_to_locals (jcf); /* Actually generate code. */ |

