From: Greta Yorsh Date: Mon, 30 Apr 2012 13:56:51 +0000 (+0100) Subject: Fix failure in gcc.dg/pr52283.c by adding the missing X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b944e97a922d85b404cba6c4a4f2fbcf8e7701b8;p=gcc.git Fix failure in gcc.dg/pr52283.c by adding the missing dg-warning and dg-options. From-SVN: r186985 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index f5cfe3710ab..7f895fdae33 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2012-04-30 Greta Yorsh + + * gcc.dg/pr52283.c: Add missing dg-warning and dg-options. + 2012-04-30 Dodji Seketeli Add -Wvarargs option diff --git a/gcc/testsuite/gcc.dg/pr52283.c b/gcc/testsuite/gcc.dg/pr52283.c index 33785a598e2..070e71aa590 100644 --- a/gcc/testsuite/gcc.dg/pr52283.c +++ b/gcc/testsuite/gcc.dg/pr52283.c @@ -1,6 +1,7 @@ /* Test for case labels not integer constant expressions but folding to integer constants (used in Linux kernel). */ /* { dg-do compile } */ +/* { dg-options "-pedantic" } */ extern unsigned int u; @@ -9,7 +10,7 @@ b (int c) { switch (c) { - case (int) (2 | ((4 < 8) ? 8 : u)): + case (int) (2 | ((4 < 8) ? 8 : u)): /* { dg-warning "case label is not an integer constant expression" } */ ; } }