[llvm-commits] [llvm] r63037 - /llvm/trunk/include/llvm/CodeGen/LiveStackAnalysis.h

Dan Gohman gohman at apple.com
Mon Jan 26 12:27:11 PST 2009


Author: djg
Date: Mon Jan 26 14:27:11 2009
New Revision: 63037

URL: http://llvm.org/viewvc/llvm-project?rev=63037&view=rev
Log:
Fix the name of an argument.

Modified:
    llvm/trunk/include/llvm/CodeGen/LiveStackAnalysis.h

Modified: llvm/trunk/include/llvm/CodeGen/LiveStackAnalysis.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/LiveStackAnalysis.h?rev=63037&r1=63036&r2=63037&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/LiveStackAnalysis.h (original)
+++ llvm/trunk/include/llvm/CodeGen/LiveStackAnalysis.h Mon Jan 26 14:27:11 2009
@@ -64,8 +64,8 @@
       return I->second;
     }
 
-    bool hasInterval(unsigned reg) const {
-      return s2iMap.count(reg);
+    bool hasInterval(unsigned Slot) const {
+      return s2iMap.count(Slot);
     }
 
     BumpPtrAllocator& getVNInfoAllocator() { return VNInfoAllocator; }





More information about the llvm-commits mailing list