diff options
author | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-05 07:17:34 +0000 |
---|---|---|
committer | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-05 07:17:34 +0000 |
commit | bc099162c31da09a5b1792bdc7c45554535d9326 (patch) | |
tree | 4d5c18c324994e5c054b7c48872b57170975b1b9 /gcc/java/java-tree.h | |
parent | 5e0bc83fe6ffedc565a20311a87d4a55a70062eb (diff) | |
download | ppe42-gcc-bc099162c31da09a5b1792bdc7c45554535d9326.tar.gz ppe42-gcc-bc099162c31da09a5b1792bdc7c45554535d9326.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'.
(http://gcc.gnu.org/ml/gcc-patches/2000-10/msg00067.html)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36717 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/java-tree.h')
-rw-r--r-- | gcc/java/java-tree.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/java/java-tree.h b/gcc/java/java-tree.h index d22efecbc75..17b76925c28 100644 --- a/gcc/java/java-tree.h +++ b/gcc/java/java-tree.h @@ -1003,6 +1003,7 @@ extern void maybe_pushlevels PARAMS ((int)); extern void maybe_poplevels PARAMS ((int)); extern void force_poplevels PARAMS ((int)); extern int process_jvm_instruction PARAMS ((int, const unsigned char *, long)); +extern int maybe_adjust_start_pc PARAMS ((struct JCF *, int, int, int)); extern void set_local_type PARAMS ((int, tree)); extern int merge_type_state PARAMS ((tree)); extern void push_type PARAMS ((tree)); @@ -1016,6 +1017,7 @@ extern int verify_constant_pool PARAMS ((struct JCF *)); extern void start_java_method PARAMS ((tree)); extern void end_java_method PARAMS ((void)); extern void give_name_to_locals PARAMS ((struct JCF *)); +extern void note_instructions PARAMS ((struct JCF *, tree)); extern void expand_byte_code PARAMS ((struct JCF *, tree)); extern int open_in_zip PARAMS ((struct JCF *, const char *, const char *, int)); extern void set_constant_value PARAMS ((tree, tree)); |