mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
16 lines
187 B
C
16 lines
187 B
C
#include <stdio.h>
|
|
|
|
int
|
|
__attribute__((noinline))
|
|
mod3fn1 (int x)
|
|
{
|
|
puts ("in mod3fn1");
|
|
return x + 6;
|
|
}
|
|
|
|
int
|
|
mod3fn2 (int x)
|
|
{
|
|
puts ("in mod3fn2");
|
|
return mod3fn1 (x / 2) * 2;
|
|
}
|