summaryrefslogtreecommitdiff
path: root/gcc/java/parse.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/java/parse.h')
-rw-r--r--gcc/java/parse.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/java/parse.h b/gcc/java/parse.h
index 249fa9b1f35..a9617b3c6c0 100644
--- a/gcc/java/parse.h
+++ b/gcc/java/parse.h
@@ -474,11 +474,7 @@ enum jdep_code {
};
typedef struct _jdep {
-#ifdef ONLY_INT_FIELDS
- int kind : 8; /* Type of patch */
-#else
- enum jdep_code kind : 8;
-#endif
+ ENUM_BITFIELD(jdep_code) kind : 8; /* Type of patch */
int flag0 : 1; /* Some flags */
tree decl; /* Tied decl/or WFL */