OSDN Git Service

PR middle-end/51761
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr34127.c
1 static void 
2 whichtable(char **pfmt)
3 {
4   --*pfmt;
5 }
6 void prepare_s(const char *fmt)
7 {
8   whichtable((char **)&fmt);
9 }