diff options
author | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-08 11:54:04 +0000 |
---|---|---|
committer | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-08 11:54:04 +0000 |
commit | b60c0c6476b24e011e7964fb6bbcf238ff035ebd (patch) | |
tree | dd1f41b261cb83e48297682ef52ec3746737c5a8 /gcc/java/parse.h | |
parent | bfd4a3d6d8fc5d3b02c0dcd30a8cd22e64368055 (diff) | |
download | gcc-b60c0c6476b24e011e7964fb6bbcf238ff035ebd.tar.gz |
Mon Feb 8 11:50:50 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* parse.h: DECL_P renamed JDECL_P.
* parse.y: DECL_P replaced by JDECL_P.
(build_array_from_name): Always use pointer's type.
(patch_bc_statement): Extra code to search continue target in a
for loop. Fixed comments. Continue target is current loop when
unlabeled.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25082 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/parse.h')
-rw-r--r-- | gcc/java/parse.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/java/parse.h b/gcc/java/parse.h index 13604eed34a..e3c93b579b3 100644 --- a/gcc/java/parse.h +++ b/gcc/java/parse.h @@ -193,9 +193,9 @@ extern tree stabilize_reference PROTO ((tree)); && (TYPE) == TREE_TYPE (null_pointer_node)) /* Other predicate */ -#define DECL_P(NODE) (NODE && (TREE_CODE (NODE) == PARM_DECL \ - || TREE_CODE (NODE) == VAR_DECL \ - || TREE_CODE (NODE) == FIELD_DECL)) +#define JDECL_P(NODE) (NODE && (TREE_CODE (NODE) == PARM_DECL \ + || TREE_CODE (NODE) == VAR_DECL \ + || TREE_CODE (NODE) == FIELD_DECL)) #define TYPE_INTERFACE_P(TYPE) \ (CLASS_P (TYPE) && CLASS_INTERFACE (TYPE_NAME (TYPE))) |