diff options
author | Stepan Dyatkovskiy <stpworld@narod.ru> | 2012-05-08 08:33:21 +0000 |
---|---|---|
committer | Stepan Dyatkovskiy <stpworld@narod.ru> | 2012-05-08 08:33:21 +0000 |
commit | 1f9838347fdcc75cead228ec1758063074b89c6a (patch) | |
tree | 5c351480bfeee042189aea714de3e8a570e29e8d /lib/VMCore | |
parent | 189bce48c7121b0d21f23aa3dec91fcf66e27925 (diff) |
Rejected r156374: Ordinary PR1255 patch. Due to clang-x86_64-debian-fnt buildbot failure.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156377 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/Instructions.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/VMCore/Instructions.cpp b/lib/VMCore/Instructions.cpp index 819a090cc3..6c5db32876 100644 --- a/lib/VMCore/Instructions.cpp +++ b/lib/VMCore/Instructions.cpp @@ -3169,13 +3169,6 @@ SwitchInst::~SwitchInst() { /// addCase - Add an entry to the switch instruction... /// void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) { - CRSBuilder CB; - CB.add(OnVal); - ConstantRangesSet CRS = CB.getCase(); - addCase(CRS, Dest); -} - -void SwitchInst::addCase(ConstantRangesSet& OnVal, BasicBlock *Dest) { unsigned NewCaseIdx = getNumCases(); unsigned OpNo = NumOperands; if (OpNo+2 > ReservedSpace) @@ -3184,7 +3177,7 @@ void SwitchInst::addCase(ConstantRangesSet& OnVal, BasicBlock *Dest) { assert(OpNo+1 < ReservedSpace && "Growing didn't work!"); NumOperands = OpNo+2; CaseIt Case(this, NewCaseIdx); - Case.setValueEx(OnVal); + Case.setValue(OnVal); Case.setSuccessor(Dest); } |