aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/pragma-pack-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/pragma-pack-2.c')
-rw-r--r--test/CodeGen/pragma-pack-2.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/CodeGen/pragma-pack-2.c b/test/CodeGen/pragma-pack-2.c
index 1ca3bdf32a28..8a77280029c6 100644
--- a/test/CodeGen/pragma-pack-2.c
+++ b/test/CodeGen/pragma-pack-2.c
@@ -4,7 +4,7 @@
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 %s -emit-llvm -o - | FileCheck -check-prefix CHECK-X64 %s
// CHECK-X64: %struct.s0 = type <{ i64, i64, i32, [12 x i32] }>
-// CHECK-X64: %struct.s1 = type <{ [15 x i32], %struct.s0 }>
+// CHECK-X64: %struct.s1 = type { [15 x i32], %struct.s0 }
// rdar://problem/7095436
#pragma pack(4)
@@ -20,4 +20,3 @@ struct s1 {
int a[15];
struct s0 b;
} b;
-