]>
Commit | Line | Data |
---|---|---|
4c38e0a4 | 1 | /* Copyright (C) 2008, 2010 Free Software Foundation, Inc. |
edb3359d DJ |
2 | |
3 | This program is free software; you can redistribute it and/or modify | |
4 | it under the terms of the GNU General Public License as published by | |
5 | the Free Software Foundation; either version 3 of the License, or | |
6 | (at your option) any later version. | |
7 | ||
8 | This program is distributed in the hope that it will be useful, | |
9 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
11 | GNU General Public License for more details. | |
12 | ||
13 | You should have received a copy of the GNU General Public License | |
14 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ | |
15 | ||
16 | int x, y; | |
17 | volatile int result; | |
18 | volatile int *array_p; | |
19 | ||
20 | void bar(void); | |
21 | ||
22 | inline int func1(int arg1) | |
23 | { | |
24 | int array[64]; | |
25 | array_p = array; | |
26 | array[0] = result; | |
27 | array[1] = arg1; | |
28 | bar (); | |
29 | return x * y + array_p[0] * arg1; | |
30 | } | |
31 | ||
32 | inline int func2(int arg2) | |
33 | { | |
34 | return x * func1 (arg2); | |
35 | } | |
36 | ||
37 | int main (void) | |
38 | { | |
39 | int val; | |
40 | ||
41 | x = 7; | |
42 | y = 8; | |
43 | bar (); | |
44 | ||
45 | val = func1 (result); | |
46 | result = val; | |
47 | ||
48 | val = func2 (result); | |
49 | result = val; | |
50 | ||
51 | return 0; | |
52 | } |