For PR1338: Rename test dirs
[oota-llvm.git] / test / CFrontend / 2007-09-27-ComplexIntCompare.c
diff --git a/test/CFrontend/2007-09-27-ComplexIntCompare.c b/test/CFrontend/2007-09-27-ComplexIntCompare.c
deleted file mode 100644 (file)
index ee9a85c..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// RUN: %llvmgcc -S %s -o -  
-// PR1708
-struct s { _Complex unsigned short x; };
-struct s gs = { 100 + 200i };
-struct s __attribute__((noinline)) foo (void) { return gs; }
-
-int main ()
-{
-  if (foo ().x != gs.x)
-    abort ();
-  exit (0);
-}
-
-