search for: grosbaj

Displaying 2 results from an estimated 2 matches for "grosbaj".

Did you mean: grosbach
2009 Apr 22
0
[LLVMdev] ARM and lowerinvoke
...Sel never identifies any landing pads, and > then complains with: > Assertion failed: (FuncInfo->CatchInfoFound.size() == FuncInfo- > >CatchInfoLost.size() && "Not all catch info was assigned to a > landing pad!"), function runOnFunction, file /Volumes/Home/grosbaj/ > sources/llvm-public/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp, > line 350. the lowerinvoke pass doesn't know anything about LLVM's exception handling intrinsics, eh.exception and eh.selector. The code generator checks that these intrinsics only turn up in landing pads. Si...
2009 Apr 21
6
[LLVMdev] ARM and lowerinvoke
...es, so SelectionDAGISel never identifies any landing pads, and then complains with: Assertion failed: (FuncInfo->CatchInfoFound.size() == FuncInfo- >CatchInfoLost.size() && "Not all catch info was assigned to a landing pad!"), function runOnFunction, file /Volumes/Home/grosbaj/ sources/llvm-public/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp, line 350. Is it reasonable to expect that lowerinvoke is a good place to start for doing what I'm after? Assuming so, I could use a bit of background education on what's going on with this assertion and how to corre...