Displaying 1 result from an estimated 1 matches for "ext_func_push".
2012 Nov 10
2
[LLVMdev] Saving a reference to a Basic Block?
...) )
case 101: br basicblock1_ret <-- generated from the compiler's map of
101-to-basicblock1_ret
case 102: br basicblock2_ret <-- generated from the compiler's map of
102-to-basicblock2_ret
default: error
Which works just fine. But what would be nice would be:
basicblock1: ext_func_push(handleof(basicblock1_ret) ): br sub1
basicblock1_ret:
basicblock2: ext_func_push(handleof(basicblock2_ret)): br sub2
basicblock2_ret:
br somewhere
basicblock.sub1: br basicblock.ret
basicblock.sub2: br basicblock.ret
basicblock.ret:
br ext_func_pop()
Where, in the generated & linked Intel 38...