search for: except3

Displaying 1 result from an estimated 1 matches for "except3".

Did you mean: except
2009 May 28
2
[LLVMdev] Nested exception handlers
...handle the case of nested "try" blocks. Say I have some code that looks like this: try { try { if (test) { // throw something } else { return; } } catch e:Except1 { } catch e:Except2 { } finally { } // more code... } catch e:Except3 { } finally { } Turning this into a list of basic blocks is starting to get rather complex. In particular: * For the innermost try block, there will be 4 possible selectors, corresponding to Except1, Except2, Except3 and "other". o The first two selectors jump d...