mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 22:24:07 +00:00
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
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user