aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/class.c
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-12-03 21:26:26 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2003-12-03 21:26:26 +0000
commit02972627abce78fcf9fbb311f29632db610be17f (patch)
tree54872bb2a6387ebfb0bcf6be4a71b1ff4e87017a /gcc/java/class.c
parentee43dab5e00224b3c0ec40112e65802c966e3343 (diff)
downloadgcc-02972627abce78fcf9fbb311f29632db610be17f.zip
gcc-02972627abce78fcf9fbb311f29632db610be17f.tar.gz
gcc-02972627abce78fcf9fbb311f29632db610be17f.tar.bz2
class.c (make_class_data): Push field value to 'hack_signers' instead of 'signers'.
2003-12-03 Michael Koch <konqueror@gmx.de> * class.c (make_class_data): Push field value to 'hack_signers' instead of 'signers'. * decl.c (java_init_decl_processing): Push field 'hack_signers' instead of 'signers'. From-SVN: r74246
Diffstat (limited to 'gcc/java/class.c')
-rw-r--r--gcc/java/class.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/class.c b/gcc/java/class.c
index 2aacbd4..5e436da 100644
--- a/gcc/java/class.c
+++ b/gcc/java/class.c
@@ -1568,7 +1568,7 @@ make_class_data (tree type)
PUSH_FIELD_VALUE (cons, "idt", null_pointer_node);
PUSH_FIELD_VALUE (cons, "arrayclass", null_pointer_node);
PUSH_FIELD_VALUE (cons, "protectionDomain", null_pointer_node);
- PUSH_FIELD_VALUE (cons, "signers", null_pointer_node);
+ PUSH_FIELD_VALUE (cons, "hack_signers", null_pointer_node);
PUSH_FIELD_VALUE (cons, "chain", null_pointer_node);
FINISH_RECORD_CONSTRUCTOR (cons);