OSDN Git Service

* gcc.dg/tls/tls.exp: Remove temporary file.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / switch-1.c
1 /* { dg-do compile { target rs6000-*-linux* powerpc-*-linux*} } */
2 /* { dg-options "-fpic -O2" } */
3
4 void f (char *s)
5 {
6   for (;;)
7     {
8       int t = 6;
9       switch (t)
10         {
11         case 2:
12           *s = '2';
13         case 6: case 4: case 3: case 1:
14           break;
15         }
16     }
17 }