mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
e1ab44ea7a
llvm-svn: 14322
8 lines
194 B
Plaintext
8 lines
194 B
Plaintext
; RUN: llvm-as < %s | 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
|
|
}
|