projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Extend the statepoint intrinsic to allow statepoints to be marked as transitions...
[oota-llvm.git]
/
test
/
CodeGen
/
X86
/
isnan.ll
1
; RUN: llc < %s -march=x86 | not grep call
2
3
declare i1 @llvm.isunordered.f64(double)
4
5
define i1 @test_isnan(double %X) {
6
%R = fcmp uno double %X, %X ; <i1> [#uses=1]
7
ret i1 %R
8
}
9