PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / wtr-switch-1.c
blobf0381bc5e3797fbfa701417336ea65ca1b00a131
1 /* Test for -Wtraditional warnings on switch operands of type long.
2 Note, gcc should omit these warnings in system header files.
3 By Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 8/22/2000. */
4 /* { dg-do compile } */
5 /* { dg-options "-Wtraditional" } */
7 void
8 testfunc (l)
9 long l;
11 switch (l) /* { dg-warning "switch expression" "switch expression" } */
13 default:
14 break;
17 # 17 "sys-header.h" 3
18 /* We are in system headers now, no -Wtraditional warnings should issue. */
20 switch (l)
22 default:
23 break;