[Alignment][NFC] Use Align with TargetLowering::setMinFunctionAlignment
[llvm-core.git] / test / CodeGen / X86 / fast-isel-call-cleanup.ll
blob1f7a59efa69bc20d476b38d8592619bec36ae059
1 ; RUN: llc -fast-isel-sink-local-values -fast-isel -O0 -code-model=large -mcpu=generic -mtriple=x86_64-linux -relocation-model=static < %s | FileCheck %s
3 ; Check that fast-isel cleans up when it fails to lower a call instruction.
4 define void @fastiselcall() {
5 entry:
6   %call = call i32 @targetfn(i32 42)
7   ret void
8 ; CHECK-LABEL: fastiselcall:
9 ; FastISel's local value code was dead, so it's gone.
10 ; CHECK-NOT: movl $42,
11 ; SDag-ISel's arg mov:
12 ; CHECK: movabsq $targetfn, %[[REG:[^ ]*]]
13 ; CHECK: movl $42, %edi
14 ; CHECK: callq *%[[REG]]
17 declare i32 @targetfn(i32)