llvm-6502/test/C++Frontend/2003-05-21-UnionTest.c
Chris Lattner afb0e71e22 New testcase that was killing the CFE
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6277 91177308-0d34-0410-b5e6-96231b3b80d8
2003-05-21 23:01:35 +00:00

12 lines
212 B
C

#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;
}