New testcase that was killing the CFE

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6277 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-05-21 23:01:35 +00:00
parent 8b6be36bca
commit afb0e71e22

View File

@ -0,0 +1,11 @@
#include <stdio.h>
int __signbit (double __x) {
union { double __d; int __i[3]; } __u = { __d: __x };
return __u.__i[1] < 0;
}
int main() {
printf("%d %d\n", __signbit(-1), __signbit(2.0));
return 0;
}