Wtype-limits-Wextra.c: Adjust expected output after recent diagnostic cleanups.
authorJeff Law <law@redhat.com>
Mon, 20 May 2019 18:17:33 +0000 (12:17 -0600)
committerJeff Law <law@gcc.gnu.org>
Mon, 20 May 2019 18:17:33 +0000 (12:17 -0600)
* gcc.dg/Wtype-limits-Wextra.c: Adjust expected output after
recent diagnostic cleanups.

From-SVN: r271429

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/Wtype-limits-Wextra.c

index 0b3c9be0837c01be20b5c491d085777c665a2bdf..0643cc35e69915ed935c3a7129910b4eca7c84ca 100644 (file)
@@ -1,3 +1,8 @@
+2019-05-20  Jeff Law  <law@redhat.com>
+
+       * gcc.dg/Wtype-limits-Wextra.c: Adjust expected output after
+       recent diagnostic cleanups.
+
 2019-05-20  Christophe Lyon  <christophe.lyon@linaro.org>
 
        PR tree-optimization/90106
index d04ecb7f3448b569948cab7eb214c2352fbbcd79..72a395164ff2792282da3aff159955ffb9a28be2 100644 (file)
@@ -21,13 +21,13 @@ void a (unsigned char x)
 }
 
 void b (unsigned short x)
-{                    /* { dg-warning "comparison of unsigned expression '< 0' is always false" "" { target { ! int32plus } } .+1 } */
+{                    /* { dg-warning "comparison of unsigned expression in '< 0' is always false" "" { target { ! int32plus } } .+1 } */
   if (x < 0)  return;/* { dg-warning "comparison is always false due to limited range of data type" "" { target { int32plus } } } */
-                     /* { dg-warning "comparison of unsigned expression '>= 0' is always true" "" { target { ! int32plus } } .+1 } */
+                     /* { dg-warning "comparison of unsigned expression in '>= 0' is always true" "" { target { ! int32plus } } .+1 } */
   if (x >= 0) return;/* { dg-warning "comparison is always true due to limited range of data type" "" { target { int32plus } } } */
-                     /* { dg-warning "comparison of unsigned expression '< 0' is always false" "" { target { ! int32plus } } .+1 } */
+                     /* { dg-warning "comparison of unsigned expression in '< 0' is always false" "" { target { ! int32plus } } .+1 } */
   if (0 > x)  return;/* { dg-warning "comparison is always false due to limited range of data type" "" { target { int32plus } } } */
-                     /* { dg-warning "comparison of unsigned expression '>= 0' is always true" "" { target { ! int32plus } } .+1 } */
+                     /* { dg-warning "comparison of unsigned expression in '>= 0' is always true" "" { target { ! int32plus } } .+1 } */
   if (0 <= x) return;/* { dg-warning "comparison is always true due to limited range of data type" "" { target { int32plus } } } */
 }