llvm-project/clang/test/CodeGen/stackrealign-main.c
Fangrui Song dbc96b518b Revert "[CodeGenModule] Assume dso_local for -fpic -fno-semantic-interposition"
This reverts commit 789a46f2d742e11edaade28cb59a0f4d2a1d770e.

Accidentally committed.
2020-02-03 10:09:39 -08:00

20 lines
526 B
C

// 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"{{.*}} }