OSDN Git Service

* c-decl.c (pushdecl): When an extern declaration at block scope
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20020318-1.c
1 /* PR c/5656
2    This testcase ICEd on IA-32 at -O3, due to tree inliner not converting
3    parameter assignment when using K&R syntax.  */
4
5 void foo (c)
6      char c;
7 {
8   (void) &c;
9 }
10
11 int bar (void);
12
13 void baz (void)
14 {
15   foo (bar ());
16 }