repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2006-12-14-ordered_expr.c
blob
c46ba8578941f54f98398b8ab9ecd1846efcf00d
1
// RUN: %clang_cc1 -O3 -emit-llvm %s -o - | FileCheck %s
2
3
int
test2
(
float
X
,
float
Y
) {
4
// CHECK: fcmp ord float %X, %Y
5
return
!
__builtin_isunordered
(
X
,
Y
);
6
}