re PR testsuite/37960 (FAIL: gcc.dg/pr11492.c (test for bogus messages, line 8))
authorJanis Johnson <janis187@us.ibm.com>
Mon, 16 Mar 2009 20:01:15 +0000 (20:01 +0000)
committerJanis Johnson <janis@gcc.gnu.org>
Mon, 16 Mar 2009 20:01:15 +0000 (20:01 +0000)
PR testsuite/37960
* gcc.dg/pr11492.c: Replace constant and remove xfail.

From-SVN: r144892

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr11492.c

index 1ebe5d1..cda42b9 100644 (file)
@@ -1,5 +1,8 @@
 2009-03-16  Janis Johnson  <janis187@us.ibm.com>
 
+       PR testsuite/37960
+       * gcc.dg/pr11492.c: Replace constant and remove xfail.
+
        PR testsuite/37630
        * lib/target-supports.exp (check_effective_target_ieee): New.
        * gcc.c-torture/execute/ieee/ieee.exp: Use it.
index 4a8b617..8663099 100644 (file)
@@ -5,7 +5,7 @@ int main( void )
 {
   unsigned int a;
   unsigned char b;
-  for ( a = 0, b = 2; a > b * 1000; a++ ) /* { dg-bogus "comparison between signed and unsigned integer" "" { xfail { ! int32plus } } } */
+  for ( a = 0, b = 2; a > b * 100; a++ ) /* { dg-bogus "comparison between signed and unsigned integer" "" } */
     { ; }
 
   return 0;