mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-22 19:49:49 +00:00
9d7106a01c
llvm-svn: 34753
9 lines
225 B
LLVM
9 lines
225 B
LLVM
; XFAIL: *
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | not grep call
|
|
|
|
fastcc int %bar(int %X, int(double, int) *%FP) {
|
|
%Y = tail call fastcc int %FP(double 0.0, int %X)
|
|
ret int %Y
|
|
}
|
|
|