aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/if-empty-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/if-empty-1.c')
-rw-r--r--gcc/testsuite/gcc.dg/if-empty-1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.dg/if-empty-1.c b/gcc/testsuite/gcc.dg/if-empty-1.c
index 0581997..b29a6cb 100644
--- a/gcc/testsuite/gcc.dg/if-empty-1.c
+++ b/gcc/testsuite/gcc.dg/if-empty-1.c
@@ -7,7 +7,7 @@ void
f (int x)
{
if (x)
- ; /* { dg-warning "warning: suggest braces around empty body in an" } */
+ ; /* { dg-warning "suggest braces around empty body in an" } */
if (x)
; /* By design we don't warn in this case. */
else
@@ -15,7 +15,7 @@ f (int x)
if (x)
(void)0;
else
- ; /* { dg-warning "warning: suggest braces around empty body in an" } */
+ ; /* { dg-warning "suggest braces around empty body in an" } */
if (x)
(void)0;
else