New testcase for llvm-gcc bugfix

llvm-svn: 32594
This commit is contained in:
Chris Lattner 2006-12-15 06:49:20 +00:00
parent 54c4ab8524
commit bb39cc4631
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
// RUN: %llvmgcc -O3 -S %s -o - | grep llvm.isunordered &&
// RUN: %llvmgcc -O3 -S %s -o - | grep xor
int test2(float X, float Y) {
return !__builtin_isunordered(X, Y);
}