1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/Regression/CodeGen/X86/isnan.llx
Chris Lattner e1ab44ea7a Isnan became unordered
llvm-svn: 14322
2004-06-22 16:13:57 +00:00

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
}