1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 15:32:52 +01:00
llvm-mirror/test/Regression/CodeGen/X86/isnan.llx

8 lines
194 B
Plaintext
Raw Normal View History

; RUN: llvm-as < %s | llc -march=x86 | not grep call
2004-06-22 18:13:57 +02:00
declare bool %llvm.isunordered(double)
bool %test_isnan(double %X) {
2004-06-22 18:13:57 +02:00
%R = call bool %llvm.isunordered(double %X, double %X)
ret bool %R
}