Sign in
third-party-mirror
/
GRTEv5
/
refs/heads/master
/
.
/
google3
/
third_party
/
grte
/
v5_src
/
glibc-2.27
/
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
;
}