blob: 1e700ef0227ae68f3fdd6772c715758d61323876 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-einline" } */
/* { dg-add-options bind_pic_locally } */
extern int rand(void);
int get_data_for (int id)
{
return rand();
}
int my_id;
int main()
{
int res = get_data_for (my_id);
switch (res)
{
case 0:
return 666;
default:
return -1;
}
}
/* { dg-final { scan-tree-dump "Inlining get_data_for into main" "einline" } } */
/* { dg-final { cleanup-tree-dump "einline" } } */
|