Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/test-programs/src/bin/dwarf_dead_code.c
3067 views
1
int bar(int a) {
2
int b[50];
3
b[0] = a;
4
b[29] = a;
5
return a;
6
}
7
8
int baz(int a);
9
10
__attribute__((export_name("foo"))) int foo() { return baz(10); }
11
12
__attribute__((noinline)) int baz(int a) { return a + 5; }
13
14