diff options
author | John Criswell <criswell@uiuc.edu> | 2012-08-15 18:40:30 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2012-08-15 18:40:30 +0000 |
commit | 9e4abb4aa90c9785dcbaf4e69a320e6a2983b526 (patch) | |
tree | e4389d6ce06eb4575fbb12fb4e78a817392f9e53 /test/CodeGen/align-global-large.c | |
parent | 5aad79f8d54bf4356b2c8b9e56ace9ac8c39adb0 (diff) |
Fix for PR#13606: http://llvm.org/bugs/show_bug.cgi?id=13606
Changed the alignment of an LValue to be 64 bits so that we can handle
alignment values up to half of a 64-bit address space.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161971 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/align-global-large.c')
-rw-r--r-- | test/CodeGen/align-global-large.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/CodeGen/align-global-large.c b/test/CodeGen/align-global-large.c new file mode 100644 index 0000000000..fcbe758a82 --- /dev/null +++ b/test/CodeGen/align-global-large.c @@ -0,0 +1,18 @@ +// PR13606 - Clang crashes with large alignment attribute +// RUN: %clang -S -emit-llvm %s -o - | FileCheck %s + +// CHECK: x +// CHECK: align +// CHECK: 1048576 +volatile char x[4000] __attribute__((aligned(0x100000))); + +int +main (int argc, char ** argv) { + // CHECK: y + // CHECK: align + // CHECK: 1048576 + volatile char y[4000] __attribute__((aligned(0x100000))); + + return y[argc]; +} + |