summaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/2009-06-14-HighlyAligned.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CodeGen/2009-06-14-HighlyAligned.c')
-rw-r--r--clang/test/CodeGen/2009-06-14-HighlyAligned.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2009-06-14-HighlyAligned.c b/clang/test/CodeGen/2009-06-14-HighlyAligned.c
new file mode 100644
index 0000000..b5a7f5e
--- /dev/null
+++ b/clang/test/CodeGen/2009-06-14-HighlyAligned.c
@@ -0,0 +1,8 @@
+// RUN: %clang_cc1 %s -emit-llvm -o /dev/null
+// PR4332
+
+static int highly_aligned __attribute__((aligned(4096)));
+
+int f() {
+ return highly_aligned;
+}