teak-llvm/clang/test/CodeGen/align-global-large.c
John Criswell edc84507c7 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.

llvm-svn: 161971
2012-08-15 18:40:30 +00:00

19 lines
386 B
C

// 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];
}