mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
9d19c17dab
llvm-svn: 36091
8 lines
217 B
Plaintext
8 lines
217 B
Plaintext
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | not grep call
|
|
declare bool %llvm.isunordered.f64(double)
|
|
|
|
bool %test_isnan(double %X) {
|
|
%R = call bool %llvm.isunordered.f64(double %X, double %X)
|
|
ret bool %R
|
|
}
|