aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/Wstrict-overflow-13.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/Wstrict-overflow-13.c')
-rw-r--r--gcc/testsuite/gcc.dg/Wstrict-overflow-13.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/Wstrict-overflow-13.c b/gcc/testsuite/gcc.dg/Wstrict-overflow-13.c
index 170d137..8691cd8 100644
--- a/gcc/testsuite/gcc.dg/Wstrict-overflow-13.c
+++ b/gcc/testsuite/gcc.dg/Wstrict-overflow-13.c
@@ -11,7 +11,7 @@ int
foo ()
{
int j;
- for (j = 1; 0 < j; j *= 2) /* { dg-warning "assuming signed overflow does not occur" "correct warning" } */
+ for (j = 1; 0 < j; j *= 2) /* { dg-warning "assuming signed overflow does not occur" "correct warning" { xfail *-*-* } } */
if (! bigtime_test (j))
return 1;
return 0;