r230152 - Remove two unused methods. No behavior change.
Nico Weber
nicolasweber at gmx.de
Sat Feb 21 16:27:32 PST 2015
Author: nico
Date: Sat Feb 21 18:27:32 2015
New Revision: 230152
URL: http://llvm.org/viewvc/llvm-project?rev=230152&view=rev
Log:
Remove two unused methods. No behavior change.
Modified:
cfe/trunk/lib/CodeGen/CGCleanup.h
Modified: cfe/trunk/lib/CodeGen/CGCleanup.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGCleanup.h?rev=230152&r1=230151&r2=230152&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGCleanup.h (original)
+++ cfe/trunk/lib/CodeGen/CGCleanup.h Sat Feb 21 18:27:32 2015
@@ -291,8 +291,6 @@ public:
void setNormalBlock(llvm::BasicBlock *BB) { NormalBlock = BB; }
bool isEHCleanup() const { return CleanupBits.IsEHCleanup; }
- llvm::BasicBlock *getEHBlock() const { return getCachedEHDispatchBlock(); }
- void setEHBlock(llvm::BasicBlock *BB) { setCachedEHDispatchBlock(BB); }
bool isActive() const { return CleanupBits.IsActive; }
void setActive(bool A) { CleanupBits.IsActive = A; }
More information about the cfe-commits
mailing list