Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
binaryen
/
refs/heads/1.38.10
/
.
/
test
/
lld
/
init.c
blob: 3a9311e3ca5759df2973d0a1b244876eed1e6084 [
file
] [
log
] [
blame
] [
edit
]
volatile
int
x
,
y
;
__attribute__
((
constructor
))
void
init_x
()
{
x
=
14
;
}
__attribute__
((
constructor
))
void
init_y
()
{
y
=
144
;
}
int
main
()
{
return
x
+
y
;
}