diff options
Diffstat (limited to 'test/CodeGen/stackrealign-main.c')
-rw-r--r-- | test/CodeGen/stackrealign-main.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/CodeGen/stackrealign-main.c b/test/CodeGen/stackrealign-main.c new file mode 100644 index 0000000000000..10b21bf548db3 --- /dev/null +++ b/test/CodeGen/stackrealign-main.c @@ -0,0 +1,19 @@ +// RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -o - -mstack-alignment=64 %s | FileCheck %s + +// CHECK-LABEL: define void @other() +// CHECK: [[OTHER:#[0-9]+]] +// CHECK: { +void other(void) {} + +// CHECK-LABEL: define i32 @main( +// CHECK: [[MAIN:#[0-9]+]] +// CHECK: { +int main(int argc, char **argv) { + other(); + return 0; +} + +// CHECK: attributes [[OTHER]] = { noinline nounwind optnone +// CHECK-NOT: "stackrealign" +// CHECK: } +// CHECK: attributes [[MAIN]] = { noinline nounwind optnone {{.*}}"stackrealign"{{.*}} } |