1static const char messg[] = "def";
2
3static inline int add(int a, int b)
4{
5	return a + b;
6}
7
8int foo(int a, int b, int p)
9{
10	if (p) {
11		add(a + b, 1);
12		return p;
13	}
14	return 0;
15}
16
17/*
18 * check-name: call-inlined
19 * check-command: test-linearize -Wno-decl $file
20 *
21 * check-output-ignore
22 * check-output-returns: %arg3
23 */
24