llvm-mirror/test/Feature/intrinsics.ll
Chris Lattner bb0198d8d2 Right, stop being silly
llvm-svn: 14184
2004-06-15 21:29:40 +00:00

14 lines
295 B
LLVM

declare bool %llvm.isunordered(float, float)
declare bool %llvm.isunordered(double, double)
implementation
; Test llvm intrinsics
;
void %libm() {
call bool %llvm.isunordered(float 0.0, float 1.0)
call bool %llvm.isunordered(double 0.0, double 0x7FF8000000000000)
ret void
}