complex-3.c: Split out first part into ...
authorAndrew Pinski <pinskia@physics.uc.edu>
Mon, 20 Feb 2006 18:01:59 +0000 (18:01 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Mon, 20 Feb 2006 18:01:59 +0000 (10:01 -0800)
2006-02-20  Andrew Pinski  <pinskia@physics.uc.edu>

        * gcc.dg/tree-ssa/complex-3.c: Split out first part into ...
        * gcc.dg/tree-ssa/complex-4.c: Here.

From-SVN: r111309

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/tree-ssa/complex-3.c
gcc/testsuite/gcc.dg/tree-ssa/complex-4.c [new file with mode: 0644]

index 1c53f178704218bb7417af8e5c1f1d7588ed3520..77626cb29bf4ffde5f71ef6e9988786440eee3b9 100644 (file)
@@ -1,3 +1,8 @@
+2006-02-20  Andrew Pinski  <pinskia@physics.uc.edu>
+
+       * gcc.dg/tree-ssa/complex-3.c: Split out first part into ...
+       * gcc.dg/tree-ssa/complex-4.c: Here.
+
 2006-02-19  Roger Sayle  <roger@eyesopen.com>
 
        PR middle-end/19543
index a3544955f7016b3d7fdd44df124934c49a5d3c1c..5f4b110c6f85be34dd4f73a55315a63475f1af68 100644 (file)
@@ -1,18 +1,3 @@
-/* { dg-do compile } */
-/* { dg-options "-O2 -fdump-tree-optimized" } */
-int g(_Complex int*);
-int f(void)
-{
-  _Complex int t = 0;
-  int i, j;
- __real__ t += 2;
- __imag__ t += 2;
-  return g(&t);
-}
-
-/* { dg-final { scan-tree-dump-times "__complex__" 0 "optimized" } } */
-/* { dg-final { cleanup-tree-dump "optimized" } } */
-
 /* { dg-do compile } */
 /* { dg-options "-O -fdump-tree-optimized" } */
 
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/complex-4.c b/gcc/testsuite/gcc.dg/tree-ssa/complex-4.c
new file mode 100644 (file)
index 0000000..02eb0ae
--- /dev/null
@@ -0,0 +1,14 @@
+/* { dg-do compile } */
+/* { dg-options "-O2 -fdump-tree-optimized" } */
+int g(_Complex int*);
+int f(void)
+{
+  _Complex int t = 0;
+  int i, j;
+ __real__ t += 2;
+ __imag__ t += 2;
+  return g(&t);
+}
+
+/* { dg-final { scan-tree-dump-times "__complex__" 0 "optimized" } } */
+/* { dg-final { cleanup-tree-dump "optimized" } } */