New testcase that was killing the CFE
authorChris Lattner <sabre@nondot.org>
Wed, 21 May 2003 23:01:35 +0000 (23:01 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 21 May 2003 23:01:35 +0000 (23:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6277 91177308-0d34-0410-b5e6-96231b3b80d8

test/C++Frontend/2003-05-21-UnionTest.c [new file with mode: 0644]

diff --git a/test/C++Frontend/2003-05-21-UnionTest.c b/test/C++Frontend/2003-05-21-UnionTest.c
new file mode 100644 (file)
index 0000000..626ba09
--- /dev/null
@@ -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;
+}