summaryrefslogtreecommitdiff
path: root/gcc/java/jcf.h
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2006-06-06 16:44:30 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2006-06-06 16:44:30 +0000
commit73efd657a9a4ce56e41b7f0139ee1e480caac1f1 (patch)
tree5948f30e573469aeed5f80d1152bd313e09d7e9d /gcc/java/jcf.h
parentdd6d3a67d5ab5e0468513d349829711e5c592db0 (diff)
downloadgcc-73efd657a9a4ce56e41b7f0139ee1e480caac1f1.tar.gz
* jcf-dump.c (print_access_flags): Handle varargs, bridge,
synthetic, enum, annotation. * jcf.h (ACC_BRIDGE): New macro. (ACC_VARARGS): Likewise. (ACC_SYNTHETIC): Likewise. (ACC_ENUM): Likewise. (ACC_ANNOTATION): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@114436 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/jcf.h')
-rw-r--r--gcc/java/jcf.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/java/jcf.h b/gcc/java/jcf.h
index 9c6bc8e1609..0e378970298 100644
--- a/gcc/java/jcf.h
+++ b/gcc/java/jcf.h
@@ -224,12 +224,17 @@ typedef struct JCF GTY(()) {
#define ACC_FINAL 0x0010
#define ACC_SYNCHRONIZED 0x0020
#define ACC_SUPER 0x0020
+#define ACC_BRIDGE 0x0040
#define ACC_VOLATILE 0x0040
#define ACC_TRANSIENT 0x0080
+#define ACC_VARARGS 0x0080
#define ACC_NATIVE 0x0100
#define ACC_INTERFACE 0x0200
#define ACC_ABSTRACT 0x0400
#define ACC_STRICT 0x0800
+#define ACC_SYNTHETIC 0x01000
+#define ACC_ANNOTATION 0x02000
+#define ACC_ENUM 0x04000
/* "Invisible" refers to Miranda methods inserted into an abstract
class. It is also used in the runtime. */
#define ACC_INVISIBLE 0x8000