aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-03-18 17:16:30 +0000
committerChris Lattner <sabre@nondot.org>2009-03-18 17:16:30 +0000
commitb8df0b5dde1e5aac214e95a14dda19f3852fb955 (patch)
tree5d7be72d20695628823300e96570cff37422299f
parentdd62beb8f7004c14c6f7731cb57e2c188051208e (diff)
remove two xfailed tests. These aren't doing any good for us until serialization is revisited.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67213 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Serialization/complex.c50
-rw-r--r--test/Serialization/stmt_exprs.c13
2 files changed, 0 insertions, 63 deletions
diff --git a/test/Serialization/complex.c b/test/Serialization/complex.c
deleted file mode 100644
index 6fef88b74e..0000000000
--- a/test/Serialization/complex.c
+++ /dev/null
@@ -1,50 +0,0 @@
-// XFAIL
-// RUN: false
-// clang %s --test-pickling 2>&1 | grep -q 'SUCCESS'
-
-int main(void)
-{
- double _Complex a = 5;
- double _Complex b = 42;
-
- return a * b != b * a;
-}
-
-_Complex double bar(int);
-void test(_Complex double*);
-void takecomplex(_Complex double);
-
-void test2(int c) {
- _Complex double X;
- X = bar(1);
- test(&X);
- takecomplex(X);
-}
-
-_Complex double g1, g2;
-_Complex float cf;
-double D;
-
-void test3() {
- g1 = g1 + g2;
- g1 = g1 - g2;
- g1 = g1 * g2;
- g1 = +-~g1;
-
- double Gr = __real g1;
-
- cf += D;
- D += cf;
- cf /= g1;
- g1 = g1 + D;
- g1 = D + g1;
-}
-
-void t1() {
- (__real__ cf) = 4.0;
-}
-
-void t2() {
- (__imag__ cf) = 4.0;
-}
-
diff --git a/test/Serialization/stmt_exprs.c b/test/Serialization/stmt_exprs.c
deleted file mode 100644
index 9bb3d73728..0000000000
--- a/test/Serialization/stmt_exprs.c
+++ /dev/null
@@ -1,13 +0,0 @@
-// XFAIL
-// RUN: false
-// clang %s --test-pickling 2>&1 | grep -q 'SUCCESS'
-typedef unsigned __uint32_t;
-
-#define __byte_swap_int_var(x) \
-__extension__ ({ register __uint32_t __X = (x); \
- __asm ("bswap %0" : "+r" (__X)); \
- __X; })
-
-int test(int _x) {
- return (__byte_swap_int_var(_x));
-}