mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
4572ce85b0
llvm-svn: 33296
14 lines
705 B
LLVM
14 lines
705 B
LLVM
; fsqrt should be generated when the fsqrt feature is enabled, but not
|
|
; otherwise.
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 -mtriple=powerpc-apple-darwin8 -mattr=+fsqrt | grep 'fsqrt f1, f1' &&
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 -mtriple=powerpc-apple-darwin8 -mcpu=g5 | grep 'fsqrt f1, f1' &&
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 -mtriple=powerpc-apple-darwin8 -mattr=-fsqrt | not grep 'fsqrt f1, f1' &&
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 -mtriple=powerpc-apple-darwin8 -mcpu=g4 | not grep 'fsqrt f1, f1'
|
|
|
|
declare double %llvm.sqrt.f64(double)
|
|
double %X(double %Y) {
|
|
%Z = call double %llvm.sqrt.f64(double %Y)
|
|
ret double %Z
|
|
}
|