aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/attr-print.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/attr-print.c')
-rw-r--r--test/Sema/attr-print.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Sema/attr-print.c b/test/Sema/attr-print.c
index 7ffbbb800d51..16b440d5d73a 100644
--- a/test/Sema/attr-print.c
+++ b/test/Sema/attr-print.c
@@ -7,6 +7,9 @@ int x __attribute__((aligned(4)));
// CHECK: int y __declspec(align(4));
__declspec(align(4)) int y;
+// CHECK: short arr[3] __attribute__((aligned));
+short arr[3] __attribute__((aligned));
+
// CHECK: void foo() __attribute__((const));
void foo() __attribute__((const));