aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/objc.dg/stret-2.m
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/objc.dg/stret-2.m')
-rw-r--r--gcc/testsuite/objc.dg/stret-2.m5
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/testsuite/objc.dg/stret-2.m b/gcc/testsuite/objc.dg/stret-2.m
index dd9a2e8e5b2..b4be5ff6a54 100644
--- a/gcc/testsuite/objc.dg/stret-2.m
+++ b/gcc/testsuite/objc.dg/stret-2.m
@@ -8,7 +8,10 @@
struct astruct {
float a, b;
-} glob = { 1.0, 2.0 };
+ /* APPLE LOCAL begin testing */
+ char c;
+} glob = { 1.0, 2.0, 'a' };
+/* APPLE LOCAL end testing */
struct bstruct {
float a, b, c, d, e, f;