[llvm-commits] CVS: llvm/include/llvm/Target/TargetRegInfo.h

Vikram Adve vadve at cs.uiuc.edu
Sun May 25 11:03:01 PDT 2003


Changes in directory llvm/include/llvm/Target:

TargetRegInfo.h updated: 1.32 -> 1.33

---
Log message:

Make case of GetNumOfInt/FloatArgRegs functions to be use lower case
like all the other functions.


---
Diffs of the changes:

Index: llvm/include/llvm/Target/TargetRegInfo.h
diff -u llvm/include/llvm/Target/TargetRegInfo.h:1.32 llvm/include/llvm/Target/TargetRegInfo.h:1.33
--- llvm/include/llvm/Target/TargetRegInfo.h:1.32	Wed Jan 15 15:13:32 2003
+++ llvm/include/llvm/Target/TargetRegInfo.h	Sun May 25 11:02:05 2003
@@ -94,8 +94,8 @@
   // Number of registers used for passing int args (usually 6: %o0 - %o5)
   // and float args (usually 32: %f0 - %f31)
   //
-  virtual unsigned const GetNumOfIntArgRegs() const   = 0;
-  virtual unsigned const GetNumOfFloatArgRegs() const = 0;
+  virtual unsigned const getNumOfIntArgRegs() const   = 0;
+  virtual unsigned const getNumOfFloatArgRegs() const = 0;
 
   // The following methods are used to color special live ranges (e.g.
   // method args and return values etc.) with specific hardware registers





More information about the llvm-commits mailing list