mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-07-29 10:30:04 +02:00
[svn r154] renaming enclosingtry to enclosingtryfinally to distinguish it from enclosingtrycatch, which will probably need to be added for exception handling
This commit is contained in:
@@ -42,10 +42,10 @@ struct IRLoopScope : IRScope
|
||||
// generating statement
|
||||
Statement* s;
|
||||
// the try of a TryFinally that encloses the loop
|
||||
TryFinallyStatement* enclosingtry;
|
||||
TryFinallyStatement* enclosingtryfinally;
|
||||
|
||||
IRLoopScope();
|
||||
IRLoopScope(Statement* s, TryFinallyStatement* enclosingtry, llvm::BasicBlock* b, llvm::BasicBlock* e);
|
||||
IRLoopScope(Statement* s, TryFinallyStatement* enclosingtryfinally, llvm::BasicBlock* b, llvm::BasicBlock* e);
|
||||
};
|
||||
|
||||
struct IRBuilderHelper
|
||||
|
||||
Reference in New Issue
Block a user