diff options
Diffstat (limited to 'test/CodeGen/2009-06-14-HighlyAligned.c')
-rw-r--r-- | test/CodeGen/2009-06-14-HighlyAligned.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/CodeGen/2009-06-14-HighlyAligned.c b/test/CodeGen/2009-06-14-HighlyAligned.c new file mode 100644 index 0000000000000..b5a7f5e733ff4 --- /dev/null +++ b/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; +} |