blob: 4dcfa7d2b31ab24f4f701ac6b372edb97f6f4e1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// This is the name by which the tests import the wasm table.
export const table = [];
var tempRet0 = 0;
export function setTempRet0(x) {
tempRet0 = x;
}
export function getTempRet0() {
return tempRet0;
}
export const memoryBase = 0;
export const tableBase = 0;
|