diff options
author | Stepan Dyatkovskiy <stpworld@narod.ru> | 2012-06-02 09:42:43 +0000 |
---|---|---|
committer | Stepan Dyatkovskiy <stpworld@narod.ru> | 2012-06-02 09:42:43 +0000 |
commit | 0e46d8a08c4c50519bd3c5688d0bb21f57edb075 (patch) | |
tree | dfbc28d82597dd7cccac348c8c637d424adad38f /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | |
parent | 539df9ef0a208802ebff95db0c87f574e806848a (diff) | |
download | bcm5719-llvm-0e46d8a08c4c50519bd3c5688d0bb21f57edb075.tar.gz bcm5719-llvm-0e46d8a08c4c50519bd3c5688d0bb21f57edb075.zip |
PR1255: case ranges.
IntRange converted from struct to class. So main change everywhere is replacement of ".Low/High" with ".getLow/getHigh()"
llvm-svn: 157884
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index 15c4258ddb8..305d03a2419 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp @@ -2458,10 +2458,10 @@ size_t SelectionDAGBuilder::Clusterify(CaseVector& Cases, // FIXME: Currently work with ConstantInt based numbers. // Changing it to APInt based is a pretty heavy for this commit. - Cases.push_back(Case(C.first.Low.toConstantInt(), - C.first.High.toConstantInt(), C.second, W)); + Cases.push_back(Case(C.first.getLow().toConstantInt(), + C.first.getHigh().toConstantInt(), C.second, W)); - if (C.first.Low != C.first.High) + if (C.first.getLow() != C.first.getHigh()) // A range counts double, since it requires two compares. ++numCmps; } |