mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-29 23:12:55 +01:00
24913add46
This reverts commit fd1335e982bbf93c5f450ed4fd29f9f787435c85. Use a triple this time. llvm-svn: 175134
7 lines
198 B
LLVM
7 lines
198 B
LLVM
; RUN: llc < %s -march=x86 -tailcallopt | FileCheck %s
|
|
define fastcc i32 @bar(i32 %X, i32(double, i32) *%FP) {
|
|
%Y = tail call fastcc i32 %FP(double 0.0, i32 %X)
|
|
ret i32 %Y
|
|
; CHECK: jmpl
|
|
}
|