diff options
author | Alexandre Petit-Bianco <apbianco@cygnus.com> | 2000-10-05 07:17:34 +0000 |
---|---|---|
committer | Alexandre Petit-Bianco <apbianco@gcc.gnu.org> | 2000-10-05 00:17:34 -0700 |
commit | 6e22695a4cb3a02846963a46b713a3e0ab419f10 (patch) | |
tree | 4d5c18c324994e5c054b7c48872b57170975b1b9 /gcc/java/java-tree.h | |
parent | e23062d5a741b3eba6bb8fc66bd0b99e759cd6cd (diff) | |
download | gcc-6e22695a4cb3a02846963a46b713a3e0ab419f10.zip gcc-6e22695a4cb3a02846963a46b713a3e0ab419f10.tar.gz gcc-6e22695a4cb3a02846963a46b713a3e0ab419f10.tar.bz2 |
[multiple changes]
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)
From-SVN: r36717
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 d22efec..17b7692 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)); |