mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-07-29 10:30:04 +02:00
[svn r335] The basics of exception handling are in place.
Still need to make sure calls are turned into invokes everywhere. (NewExpression for instance) Still some rough edges and corner cases to figure out. Needs testing!
This commit is contained in:
@@ -136,8 +136,11 @@ struct IRState
|
||||
llvm::BasicBlock* scopeend();
|
||||
bool scopereturned();
|
||||
|
||||
// landing pads for try statements
|
||||
typedef std::vector<llvm::BasicBlock*> BBVec;
|
||||
BBVec landingPads;
|
||||
|
||||
// loop blocks
|
||||
typedef std::vector<IRScope> BBVec;
|
||||
typedef std::vector<IRLoopScope> LoopScopeVec;
|
||||
LoopScopeVec loopbbs;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user