_offc_bisect_many_funcs.nx
buildroot/runtime/_offc_bisect_many_funcs.nx
dependencies 0 imports · 0 importers
imports: none
imported by: nobody (leaf or entry point)
call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown
structs
| none |
consts
| none |
functions
| 1 | func f1(x: i64) -> i64 { return x + 1 } called by 1: f2 |
| 2 | func f2(x: i64) -> i64 { return f1(x) + 1 } |
| 3 | func f3(x: i64) -> i64 { return f2(x) + 1 } |
| 4 | func f4(x: i64) -> i64 { return f3(x) + 1 } |
| 5 | func f5(x: i64) -> i64 { return f4(x) + 1 } |
| 6 | func f6(x: i64) -> i64 { return f5(x) + 1 } |
| 7 | func f7(x: i64) -> i64 { return f6(x) + 1 } |
| 8 | func f8(x: i64) -> i64 { return f7(x) + 1 } |
| 9 | func main() -> i64 { return f8(34) } calls 1: f8 |