summaryrefslogtreecommitdiff
path: root/gcc/testsuite/objc.dg/bitfield-2.m
diff options
context:
space:
mode:
authorzlaski <zlaski@138bc75d-0d04-0410-961f-82ee72b054a4>2004-09-08 18:48:56 +0000
committerzlaski <zlaski@138bc75d-0d04-0410-961f-82ee72b054a4>2004-09-08 18:48:56 +0000
commit73bd5b7dd5e2eb4f27ac35d26be2480cd38f4683 (patch)
tree0c5565d9ae431cbdfdb18491b49e823a7e3e57dc /gcc/testsuite/objc.dg/bitfield-2.m
parent13f08ee73a09f0fed0c11095b6d7dd1ba887fc15 (diff)
downloadgcc-73bd5b7dd5e2eb4f27ac35d26be2480cd38f4683.tar.gz
[gcc/testsuite/ChangeLog]
2004-09-08 Ziemowit Laski <zlaski@apple.com> * objc.dg/bitfield-2.m: Make 'id' definition a typedef. * obj.dg/bitfield-4.m: Allow 'unsigned' in addition to 'unsigned int' in error message. * objc.dg/id-1.m: Attempt to define 'id' in an incompatible fashion. * objc.dg/method-6.m: Allow 'unsigned' in addition to 'unsigned int' in error message. * objc.dg/proto-qual-1.m: Protocol qualifiers now appear before the types they qualify. * objc.dg/type-size-2.m: Fix wording in comment. * objc.dg/va-meth-1.m: New test case. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87196 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/objc.dg/bitfield-2.m')
-rw-r--r--gcc/testsuite/objc.dg/bitfield-2.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/objc.dg/bitfield-2.m b/gcc/testsuite/objc.dg/bitfield-2.m
index 83b31748371..6875c6c4d87 100644
--- a/gcc/testsuite/objc.dg/bitfield-2.m
+++ b/gcc/testsuite/objc.dg/bitfield-2.m
@@ -4,7 +4,7 @@
/* { dg-options "-fnext-runtime -fsigned-char" } */
/* { dg-do run { target *-*-darwin* } } */
-struct objc_object { struct objc_class *class_pointer; } *id;
+typedef struct objc_object { struct objc_class *class_pointer; } *id;
extern void abort(void);
extern int strcmp(const char *, const char *);