You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
411 B
19 lines
411 B
// PR13606 - Clang crashes with large alignment attribute
|
|
// RUN: %clang -cc1 -S -emit-llvm %s -o - -triple i686-pc-gnu | 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];
|
|
}
|
|
|