r300035 - Update Clang for an API change to LLVM's switch case iterator (it is now
Chandler Carruth via cfe-commits
cfe-commits at lists.llvm.org
Wed Apr 12 01:12:30 PDT 2017
Author: chandlerc
Date: Wed Apr 12 03:12:30 2017
New Revision: 300035
URL: http://llvm.org/viewvc/llvm-project?rev=300035&view=rev
Log:
Update Clang for an API change to LLVM's switch case iterator (it is now
an actual iterator and so we need to look through it to the case
handle).
Modified:
cfe/trunk/lib/CodeGen/CGCleanup.cpp
Modified: cfe/trunk/lib/CodeGen/CGCleanup.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGCleanup.cpp?rev=300035&r1=300034&r2=300035&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGCleanup.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGCleanup.cpp Wed Apr 12 03:12:30 2017
@@ -609,7 +609,7 @@ static void destroyOptimisticNormalEntry
llvm::SwitchInst *si = cast<llvm::SwitchInst>(use.getUser());
if (si->getNumCases() == 1 && si->getDefaultDest() == unreachableBB) {
// Replace the switch with a branch.
- llvm::BranchInst::Create(si->case_begin().getCaseSuccessor(), si);
+ llvm::BranchInst::Create(si->case_begin()->getCaseSuccessor(), si);
// The switch operand is a load from the cleanup-dest alloca.
llvm::LoadInst *condition = cast<llvm::LoadInst>(si->getCondition());
More information about the cfe-commits
mailing list