blob: df4c7943c07651c96b25854ebddb15cc9f26d18c (
plain) (
blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/*
20040917-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
/* submitted by kenneth zadeck */
static int test_var;
/* the idea here is that not only is inlinable, inlinable but since it
is static, the cgraph node will not be marked as output. The
current version of the code ignores these cgraph nodes. */
void not_inlinable();
static void
inlinable ()
{
test_var = -10;
}
void
not_inlinable ()
{
inlinable();
}
void
testTortureExecute (void)
{
test_var = 10;
/* Variable test_var should be considered call-clobbered by the call
to not_inlinable(). */
not_inlinable ();
if (test_var == 10)
ASSERT (0);
return;
}
|