Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / Generic / ForceStackAlign.ll
blob2c35ad350f0473ed555695afb43b91af64f14180
1 ; Check that stack alignment can be forced. Individual targets should test their
2 ; specific implementation details.
4 ; RUN: llc < %s -stackrealign | FileCheck %s
5 ; CHECK-LABEL: @f
6 ; CHECK-LABEL: @g
8 ; Stack realignment not supported.
9 ; XFAIL: target=sparc{{.*}}
11 ; NVPTX cannot select dynamic_stackalloc
12 ; XFAIL: target=nvptx{{.*}}
14 define i32 @f(ptr %p) nounwind {
15 entry:
16   %0 = load i8, ptr %p
17   %conv = sext i8 %0 to i32
18   ret i32 %conv
21 define i64 @g(i32 %i) nounwind {
22 entry:
23   br label %if.then
25 if.then:
26   %0 = alloca i8, i32 %i
27   call void @llvm.memset.p0.i32(ptr %0, i8 0, i32 %i, i1 false)
28   %call = call i32 @f(ptr %0)
29   %conv = sext i32 %call to i64
30   ret i64 %conv
33 declare void @llvm.memset.p0.i32(ptr, i8, i32, i1) nounwind
35 !llvm.module.flags = !{!0}
36 !0 = !{i32 2, !"override-stack-alignment", i32 32}