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 | 58107dd547a883927c9be9a92b8396a7700685d9 (patch) | |
tree | 3845bda77e342cee5ecbfcd9c0499fb92be5fd53 /llvm/lib/ExecutionEngine/Interpreter/Execution.cpp | |
parent | 458b4006b2cfdc2364be92913b77ca6abc866899 (diff) | |
download | llvm-58107dd547a883927c9be9a92b8396a7700685d9.zip llvm-58107dd547a883927c9be9a92b8396a7700685d9.tar.gz llvm-58107dd547a883927c9be9a92b8396a7700685d9.tar.bz2 |
ConstantRangesSet renamed to IntegersSubset. CRSBuilder renamed to IntegersSubsetMapping.
llvm-svn: 157612
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Execution.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Execution.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp b/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp index 46ed6fd..d540101 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp +++ b/llvm/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(); |