mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-03 09:28:58 +00:00
4572ce85b0
llvm-svn: 33296
8 lines
209 B
Plaintext
8 lines
209 B
Plaintext
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | not grep call
|
|
declare bool %llvm.isunordered(double)
|
|
|
|
bool %test_isnan(double %X) {
|
|
%R = call bool %llvm.isunordered(double %X, double %X)
|
|
ret bool %R
|
|
}
|