MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / main

Function main

test/core/test_setjmp_within_loop.c:21–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19int n = 3;
20
21int main() {
22 while (n-- > 0) {
23 a();
24 if (setjmp(buf))
25 b();
26 else
27 c();
28 }
29 if (d())
30 longjmp(buf, 3);
31 return 0;
32}

Callers

nothing calls this directly

Calls 4

aFunction · 0.70
bFunction · 0.70
cFunction · 0.70
dFunction · 0.70

Tested by

no test coverage detected