OSDN Git Service

2010-01-26 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / tree-ssa / 20080530.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-einline" } */
3
4 void bar (char *);
5 int i;
6
7 static void
8 foo (void)
9 {
10   char *p = __builtin_alloca (i);
11   bar (p);
12 }
13
14 int
15 baz (void)
16 {
17   foo ();       /* foo() should not be inlined here because it calls alloca */
18   return 6;
19 }
20
21 /* { dg-final { scan-tree-dump-times "Inlining foo into baz" 0 "einline2"} } */
22 /* { dg-final { cleanup-tree-dump "einline2" } } */