mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-21 01:06:46 +00:00
IntegersSubsetMappin: cosmetic changes in diff operation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159661 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2e2a15e26b
commit
9ccc83e7f7
@ -195,7 +195,7 @@ protected:
|
||||
}
|
||||
}
|
||||
|
||||
void onRLOpen(const IntTy &Pt,
|
||||
void onLROpen(const IntTy &Pt,
|
||||
SuccessorClass *LS,
|
||||
SuccessorClass *RS) {
|
||||
switch (State) {
|
||||
@ -211,7 +211,7 @@ protected:
|
||||
OpenPt = Pt;
|
||||
}
|
||||
|
||||
void onRLClose(const IntTy &Pt) {
|
||||
void onLRClose(const IntTy &Pt) {
|
||||
switch (State) {
|
||||
case INTERSECT_OPENED:
|
||||
if (IntersectionMapping)
|
||||
@ -472,8 +472,8 @@ public:
|
||||
}
|
||||
|
||||
if (LRange.isSingleNumber() && RRange.isSingleNumber()) {
|
||||
Machine.onRLOpen(LRange.getLow(), LCluster.second, RCluster.second);
|
||||
Machine.onRLClose(LRange.getLow());
|
||||
Machine.onLROpen(LRange.getLow(), LCluster.second, RCluster.second);
|
||||
Machine.onLRClose(LRange.getLow());
|
||||
++L;
|
||||
++R;
|
||||
continue;
|
||||
@ -512,7 +512,7 @@ public:
|
||||
Machine.onLOpen(LRange.getLow(), LCluster.second);
|
||||
}
|
||||
else
|
||||
Machine.onRLOpen(LRange.getLow(), LCluster.second, RCluster.second);
|
||||
Machine.onLROpen(LRange.getLow(), LCluster.second, RCluster.second);
|
||||
|
||||
if (LRange.getHigh() < RRange.getHigh()) {
|
||||
Machine.onLClose(LRange.getHigh());
|
||||
@ -533,7 +533,7 @@ public:
|
||||
}
|
||||
}
|
||||
else {
|
||||
Machine.onRLClose(LRange.getHigh());
|
||||
Machine.onLRClose(LRange.getHigh());
|
||||
++L;
|
||||
++R;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user