Fix failure in gcc.dg/pr52283.c by adding the missing
dg-warning and dg-options. From-SVN: r186985
This commit is contained in:
parent
b8fb55d14a
commit
b944e97a92
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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" } */
|
||||
;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue