forked from OSchip/llvm-project
18 lines
574 B
LLVM
18 lines
574 B
LLVM
; RUN: llc -fast-isel-sink-local-values -fast-isel -O0 -code-model=large -mcpu=generic -mtriple=x86_64-apple-darwin10 -relocation-model=pic < %s | FileCheck %s
|
|
|
|
; Check that fast-isel cleans up when it fails to lower a call instruction.
|
|
define void @fastiselcall() {
|
|
entry:
|
|
%call = call i32 @targetfn(i32 42)
|
|
ret void
|
|
; CHECK-LABEL: fastiselcall:
|
|
; FastISel's local value code was dead, so it's gone.
|
|
; CHECK-NOT: movl $42,
|
|
; SDag-ISel's arg mov:
|
|
; CHECK: movabsq $_targetfn, %[[REG:[^ ]*]]
|
|
; CHECK: movl $42, %edi
|
|
; CHECK: callq *%[[REG]]
|
|
|
|
}
|
|
declare i32 @targetfn(i32)
|