* g++.dg/torture/pr33134.C: Moved from g++.dg/tree-ssa.
authorIan Lance Taylor <ian@gcc.gnu.org>
Wed, 22 Aug 2007 04:30:25 +0000 (04:30 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Wed, 22 Aug 2007 04:30:25 +0000 (04:30 +0000)
From-SVN: r127686

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/torture/pr33134.C [new file with mode: 0644]
gcc/testsuite/g++.dg/tree-ssa/pr33134.C [deleted file]

index 3d3ed01b0210bfcd1a77087fc31c02bcdc0c1618..63ba2f2cd640adee839eea995119df623125f8d7 100644 (file)
@@ -1,3 +1,7 @@
+2007-08-21  Ian Lance Taylor  <iant@google.com>
+
+       * g++.dg/torture/pr33134.C: Moved from g++.dg/tree-ssa.
+
 2007-08-21  Ian Lance Taylor  <iant@google.com>
 
        PR tree-optimization/33134
        PR fortran/32360
        * gfortran.dg/pointer_assign_3.f90: New test.
 
+2007-06-21  Sebastian Pop  <sebpop@gmail.com>
+
+       * gcc/testsuite/gcc.dg/tree-ssa/pr19590.c: New.
+
 2007-06-21  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
 
        PR fortran/31162
diff --git a/gcc/testsuite/g++.dg/torture/pr33134.C b/gcc/testsuite/g++.dg/torture/pr33134.C
new file mode 100644 (file)
index 0000000..43482c7
--- /dev/null
@@ -0,0 +1,21 @@
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+
+/* Used to crash in VRP.  */
+/* Testcase by Martin Michlmayr <tbm@cyrius.com> */
+
+class FXObject;
+class FXStream
+{
+  public:FXStream (const FXObject *cont = __null);
+  FXStream & operator<< (const unsigned char &v);
+};
+
+bool fxsaveGIF (FXStream &store)
+{
+  int bitsperpixel;
+  unsigned char c1;
+  c1 = 0x80;
+  c1 |= (bitsperpixel - 1) << 4;
+  store << c1;
+}
diff --git a/gcc/testsuite/g++.dg/tree-ssa/pr33134.C b/gcc/testsuite/g++.dg/tree-ssa/pr33134.C
deleted file mode 100644 (file)
index 43482c7..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O2" } */
-
-/* Used to crash in VRP.  */
-/* Testcase by Martin Michlmayr <tbm@cyrius.com> */
-
-class FXObject;
-class FXStream
-{
-  public:FXStream (const FXObject *cont = __null);
-  FXStream & operator<< (const unsigned char &v);
-};
-
-bool fxsaveGIF (FXStream &store)
-{
-  int bitsperpixel;
-  unsigned char c1;
-  c1 = 0x80;
-  c1 |= (bitsperpixel - 1) << 4;
-  store << c1;
-}