OSDN Git Service

2007-01-18 Hui-May Chang <hm.chang@apple.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / switch-1.c
1 /* PR middle-end/26557.  */
2 const int struct_test[1] = {1};
3 void g();
4 void f() {
5   switch(struct_test[0]) {
6     case 1: g();
7   }
8 }
9