Dmitry V. Levin
b076420692
Split stack-fcall.c into several compilation units so that intermediate function calls would not be optimized out by compiler. * tests/stack-fcall.c: Move intermediate functions to ... * tests/stack-fcall-*.c: ... new files. * tests/Makefile.am (stack_fcall_SOURCES): Add stack-fcall-*.c.
8 lines
74 B
C
8 lines
74 B
C
int f0(int i);
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
f0(argc);
|
|
return 0;
|
|
}
|