OSDN Git Service

PR testsuite/35127
authorjanis <janis@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 13 May 2008 18:06:33 +0000 (18:06 +0000)
committerjanis <janis@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 13 May 2008 18:06:33 +0000 (18:06 +0000)
* gcc.c-torture/compile/20031125-1.c: Remove dg-do, dg-options.
* gcc.c-torture/compile/20031125-2.c: Ditto.
* gcc.c-torture/compile/20031203-1.c: Ditto.
* gcc.c-torture/compile/acc1.c: Remove -O2 from dg-options.
* gcc.c-torture/compile/builtin_constant_p.c: Remove dg-options.
* gcc.c-torture/compile/pr21562.c: Remove -O3 from dg-options.
* gcc.c-torture/compile/pr25483.c: Remove -O from dg-options.
* gcc.c-torture/compile/pr32349.c: Remove -O2 from dg-options.
* gcc.c-torture/compile/pr32355.c: Remove dg-options.
* gcc.c-torture/compile/pr34448.c: Ditto.
* gcc.c-torture/compile/pr34648.c: Remove -O2 from dg-options.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@135269 138bc75d-0d04-0410-961f-82ee72b054a4

12 files changed:
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/compile/20031125-1.c
gcc/testsuite/gcc.c-torture/compile/20031125-2.c
gcc/testsuite/gcc.c-torture/compile/20031203-1.c
gcc/testsuite/gcc.c-torture/compile/acc1.c
gcc/testsuite/gcc.c-torture/compile/builtin_constant_p.c
gcc/testsuite/gcc.c-torture/compile/pr21562.c
gcc/testsuite/gcc.c-torture/compile/pr25483.c
gcc/testsuite/gcc.c-torture/compile/pr32349.c
gcc/testsuite/gcc.c-torture/compile/pr32355.c
gcc/testsuite/gcc.c-torture/compile/pr34448.c
gcc/testsuite/gcc.c-torture/compile/pr34648.c

index ff46688..cc85d14 100644 (file)
@@ -1,3 +1,18 @@
+2008-05-13  Janis Johnson  <janis187@us.ibm.com>
+
+       PR testsuite/35127
+       * gcc.c-torture/compile/20031125-1.c: Remove dg-do, dg-options.
+       * gcc.c-torture/compile/20031125-2.c: Ditto.
+       * gcc.c-torture/compile/20031203-1.c: Ditto.
+       * gcc.c-torture/compile/acc1.c: Remove -O2 from dg-options.
+       * gcc.c-torture/compile/builtin_constant_p.c: Remove dg-options.
+       * gcc.c-torture/compile/pr21562.c: Remove -O3 from dg-options.
+       * gcc.c-torture/compile/pr25483.c: Remove -O from dg-options.
+       * gcc.c-torture/compile/pr32349.c: Remove -O2 from dg-options.
+       * gcc.c-torture/compile/pr32355.c: Remove dg-options.
+       * gcc.c-torture/compile/pr34448.c: Ditto.
+       * gcc.c-torture/compile/pr34648.c: Remove -O2 from dg-options.
+
 2008-05-13  Tom Tromey  <tromey@redhat.com>
 
        PR preprocessor/22168:
 2008-05-13  Tom Tromey  <tromey@redhat.com>
 
        PR preprocessor/22168:
index 735a20b..d3e9267 100644 (file)
@@ -1,5 +1,3 @@
-/* { dg-do compile } */
-/* { dg-options "-O2" } */
 short *_offsetTable;
 /* This tests to make sure PRE splits the entry block ->block 0 edge
    when there are multiple block 0 predecessors.
 short *_offsetTable;
 /* This tests to make sure PRE splits the entry block ->block 0 edge
    when there are multiple block 0 predecessors.
index 2af8a02..42b7248 100644 (file)
@@ -1,5 +1,3 @@
-/* { dg-do compile } */
-/* { dg-options "-O2" } */
 struct BlobSpan {
        int right;
 };
 struct BlobSpan {
        int right;
 };
index 7827eb9..70547fd 100644 (file)
@@ -1,5 +1,3 @@
-/* { dg-do compile } */
-/* { dg-options "-O2" } */
 void make_file_symbol_completion_list (char *);
 /* This tests to make sure PRE doesn't choose the wrong name when
    inserting phi nodes.  Otherwise, we get uses that aren't dominated
 void make_file_symbol_completion_list (char *);
 /* This tests to make sure PRE doesn't choose the wrong name when
    inserting phi nodes.  Otherwise, we get uses that aren't dominated
index 206d16b..5b5bcd4 100644 (file)
@@ -1,4 +1,4 @@
-/* { dg-options "-O2 -ffast-math" } */
+/* { dg-options "-ffast-math" } */
 
 /* Fast maths allows tail recursion to be turned into iteration.  */
 
 
 /* Fast maths allows tail recursion to be turned into iteration.  */
 
index fdfe3e0..8b18c8a 100644 (file)
@@ -1,5 +1,3 @@
-/* { dg-options "-O2" } */
-
 int main (int argc, char *argv[])
 {
   static int a[] = { __builtin_constant_p (argc) ? 1 : 0 };
 int main (int argc, char *argv[])
 {
   static int a[] = { __builtin_constant_p (argc) ? 1 : 0 };
index d100b28..9b4932f 100644 (file)
@@ -1,4 +1,4 @@
-/* { dg-options "-O3 -fno-inline" } */
+/* { dg-options "-fno-inline" } */
 struct foo { int a, b, c; };
 void abort(void);
 void exit(int);
 struct foo { int a, b, c; };
 void abort(void);
 void exit(int);
index c5b7ed8..99151fd 100644 (file)
@@ -1,4 +1,4 @@
-/* { dg-options "-O -fmove-loop-invariants" } */
+/* { dg-options "-fmove-loop-invariants" } */
 
 static int mdct_win[8];
 int x;
 
 static int mdct_win[8];
 int x;
index 570969d..df725af 100644 (file)
@@ -1,4 +1,4 @@
-/* { dg-options "-O2 -fmodulo-sched" } */
+/* { dg-options "-fmodulo-sched" } */
 
 
 extern long *x1, *x2, *x3;
 
 
 extern long *x1, *x2, *x3;
index 126412d..e88cf5c 100644 (file)
@@ -1,5 +1,3 @@
-/* { dg-options "-O3" } */
-
 typedef struct
 {
 }
 typedef struct
 {
 }
index 988465e..625f6f8 100644 (file)
@@ -1,6 +1,3 @@
-/* { dg-do compile } */
-/* { dg-options "-O" } */
-
 typedef struct chunk_t chunk_t;
 struct chunk_t
 {
 typedef struct chunk_t chunk_t;
 struct chunk_t
 {
index 1f7472f..8bcdae0 100644 (file)
@@ -1,7 +1,6 @@
 /* PR tree-optimization/34648 */
 
 /* PR tree-optimization/34648 */
 
-/* { dg-do compile } */
-/* { dg-options "-O2 -fexceptions" } */
+/* { dg-options "-fexceptions" } */
 
 extern const unsigned short int **bar (void) __attribute__ ((const));
 const char *a;
 
 extern const unsigned short int **bar (void) __attribute__ ((const));
 const char *a;