+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
--- /dev/null
+/* { 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;
+}
+++ /dev/null
-/* { 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;
-}