Fix failure in gcc.dg/pr52283.c by adding the missing

dg-warning and dg-options.

From-SVN: r186985
This commit is contained in:
Greta Yorsh 2012-04-30 14:56:51 +01:00 committed by Tejas Belagod
parent b8fb55d14a
commit b944e97a92
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2012-04-30 Greta Yorsh <Greta.Yorsh@arm.com>
* gcc.dg/pr52283.c: Add missing dg-warning and dg-options.
2012-04-30 Dodji Seketeli <dodji@redhat.com>
Add -Wvarargs option

View file

@ -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" } */
;
}
}