OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr12578.c
1 /*  PR tree-optimization/12517  */
2
3 void trivial_regexp_p(int *s, int len)
4 {
5     while (--len) {
6         switch (*s++) {
7             case '\\':
8                 switch (*s++) {
9                     case '|':
10                         ;
11                 }
12         }
13     }
14 }
15