53a78b5417c4c495ec5927f3e3c00c6444d88579
[oota-llvm.git] / test / Feature / intrinsics.ll
1
2 declare bool %llvm.isnan(float)
3 declare bool %llvm.isnan(double)
4
5 implementation
6
7 ; Test llvm intrinsics
8 ;
9 void %libm() {
10         call bool %llvm.isnan(float 0.0)
11         call bool %llvm.isnan(double 10.0)
12         ret void
13 }