mirror of
https://github.com/pezkuwichain/wasm-instrument.git
synced 2026-04-22 21:57:55 +00:00
10 lines
110 B
C
10 lines
110 B
C
int ops = 0;
|
|
|
|
void log(int block_ops) {
|
|
ops += block_ops;
|
|
}
|
|
|
|
int call(int x) {
|
|
log(5);
|
|
return 2 * x;
|
|
} |