diff options
author | Alexandre Petit-Bianco <apbianco@cygnus.com> | 1999-02-08 11:54:04 +0000 |
---|---|---|
committer | Alexandre Petit-Bianco <apbianco@gcc.gnu.org> | 1999-02-08 03:54:04 -0800 |
commit | 34f4db93fc63a60b990c010561109070e76c72b3 (patch) | |
tree | dd1f41b261cb83e48297682ef52ec3746737c5a8 /gcc/java/parse.h | |
parent | 9691f3a1ea16da2c8584a7306d480c6016c36451 (diff) | |
download | gcc-34f4db93fc63a60b990c010561109070e76c72b3.zip gcc-34f4db93fc63a60b990c010561109070e76c72b3.tar.gz gcc-34f4db93fc63a60b990c010561109070e76c72b3.tar.bz2 |
parse.h: DECL_P renamed JDECL_P.
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.
From-SVN: r25082
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 13604eed..e3c93b5 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))) |