[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:
Christian Kamm
2008-03-22 12:20:32 +01:00
parent de63966a59
commit 402ce90e19
5 changed files with 70 additions and 70 deletions

View File

@@ -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