You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
187 B

#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;
}