[llvm-commits] [llvm] r159661 - /llvm/trunk/include/llvm/Support/IntegersSubsetMapping.h

Stepan Dyatkovskiy stpworld at narod.ru
Tue Jul 3 07:29:27 PDT 2012


Author: dyatkovskiy
Date: Tue Jul  3 09:29:26 2012
New Revision: 159661

URL: http://llvm.org/viewvc/llvm-project?rev=159661&view=rev
Log:
IntegersSubsetMappin: cosmetic changes in diff operation.


Modified:
    llvm/trunk/include/llvm/Support/IntegersSubsetMapping.h

Modified: llvm/trunk/include/llvm/Support/IntegersSubsetMapping.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/IntegersSubsetMapping.h?rev=159661&r1=159660&r2=159661&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/IntegersSubsetMapping.h (original)
+++ llvm/trunk/include/llvm/Support/IntegersSubsetMapping.h Tue Jul  3 09:29:26 2012
@@ -195,7 +195,7 @@
       }
     }
     
-    void onRLOpen(const IntTy &Pt,
+    void onLROpen(const IntTy &Pt,
                   SuccessorClass *LS,
                   SuccessorClass *RS) {
       switch (State) {
@@ -211,7 +211,7 @@
       OpenPt = Pt;        
     }
     
-    void onRLClose(const IntTy &Pt) {
+    void onLRClose(const IntTy &Pt) {
       switch (State) {
       case INTERSECT_OPENED:
         if (IntersectionMapping)
@@ -472,8 +472,8 @@
       }
 
       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 @@
         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 @@
         }
       }
       else {
-        Machine.onRLClose(LRange.getHigh());
+        Machine.onLRClose(LRange.getHigh());
         ++L;
         ++R;
       }





More information about the llvm-commits mailing list