mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-29 23:12:55 +01:00
e82d5edfee
llvm-svn: 21311
12 lines
203 B
LLVM
12 lines
203 B
LLVM
; RUN: llvm-as < %s | llc -march=ppc32 | grep fnabs
|
|
|
|
declare double %fabs(double)
|
|
|
|
implementation
|
|
|
|
double %test(double %X) {
|
|
%Y = call double %fabs(double %X)
|
|
%Z = sub double -0.0, %Y
|
|
ret double %Z
|
|
}
|