diff options
author | Stepan Dyatkovskiy <stpworld@narod.ru> | 2012-05-29 12:26:47 +0000 |
---|---|---|
committer | Stepan Dyatkovskiy <stpworld@narod.ru> | 2012-05-29 12:26:47 +0000 |
commit | 0aa32d5d0ff6cd65b6cff957858a79e2d2a614bd (patch) | |
tree | b35a3334dc0afe235eacc28725ff35d6388dc7ba /lib/ExecutionEngine/Interpreter | |
parent | b34d3aa35b199969168f41a12e92e5d2f0e9367f (diff) |
ConstantRangesSet renamed to IntegersSubset. CRSBuilder renamed to IntegersSubsetMapping.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157612 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter')
-rw-r--r-- | lib/ExecutionEngine/Interpreter/Execution.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Execution.cpp b/lib/ExecutionEngine/Interpreter/Execution.cpp index 46ed6fdfbf..d54010195d 100644 --- a/lib/ExecutionEngine/Interpreter/Execution.cpp +++ b/lib/ExecutionEngine/Interpreter/Execution.cpp @@ -651,9 +651,9 @@ void Interpreter::visitSwitchInst(SwitchInst &I) { // Check to see if any of the cases match... BasicBlock *Dest = 0; for (SwitchInst::CaseIt i = I.case_begin(), e = I.case_end(); i != e; ++i) { - ConstantRangesSet Case = i.getCaseValueEx(); + IntegersSubset Case = i.getCaseValueEx(); for (unsigned n = 0, en = Case.getNumItems(); n != en; ++n) { - ConstantRangesSet::Range r = Case.getItem(n); + IntegersSubset::Range r = Case.getItem(n); // FIXME: Currently work with ConstantInt based numbers. const ConstantInt *LowCI = r.Low.getImplementation(); const ConstantInt *HighCI = r.High.getImplementation(); |