Sign in
nest-open-source
/
nest-cam
/
v366
/
glibc
/
refs/heads/main
/
.
/
elf
/
unload4mod3.c
blob: 4b280bc05b055b36e4ae2c2170cce87692c04a0a [
file
] [
log
] [
blame
] [
edit
]
#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
;
}