OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20030331-1.c
1 /* From PR/9301.  Fixed by ebotcazou's patch for PR/9493.  */
2
3 void bar (void);
4
5 void foo (int a, int b, int c, int d, int e)
6 {
7   if (a)
8     bar();
9   if (b && c)
10     ;
11   if (d && e)
12     ;
13 }