diff options
author | John McCall <rjmccall@apple.com> | 2011-07-12 20:27:29 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-07-12 20:27:29 +0000 |
commit | ad346f4f678ab1c3222425641d851dc63e9dfa1a (patch) | |
tree | ac5ab28888fb9041423b037fc6437038d831281d /lib/CodeGen/CGObjCMac.cpp | |
parent | bb52786da8d055568eef6e5694288c1258bc8c2a (diff) |
Generalize Cleanup::Emit's "isForEH" parameter into a set
of flags. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@134997 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGObjCMac.cpp')
-rw-r--r-- | lib/CodeGen/CGObjCMac.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGObjCMac.cpp b/lib/CodeGen/CGObjCMac.cpp index 19ba868a3e..307e71cdd8 100644 --- a/lib/CodeGen/CGObjCMac.cpp +++ b/lib/CodeGen/CGObjCMac.cpp @@ -2581,7 +2581,7 @@ namespace { : S(*S), SyncArgSlot(SyncArgSlot), CallTryExitVar(CallTryExitVar), ExceptionData(ExceptionData), ObjCTypes(*ObjCTypes) {} - void Emit(CodeGenFunction &CGF, bool IsForEH) { + void Emit(CodeGenFunction &CGF, Flags flags) { // Check whether we need to call objc_exception_try_exit. // In optimized code, this branch will always be folded. llvm::BasicBlock *FinallyCallExit = |