diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2003-05-25 16:02:05 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2003-05-25 16:02:05 +0000 |
commit | 28fc440bc630b50f17d911eb9adab7038a771836 (patch) | |
tree | 0a2da5ab6a077f9f1845857f2545adb273671789 /include | |
parent | 5b1b47b8240b483ad815b8c60270f0d63f097b53 (diff) | |
download | external_llvm-28fc440bc630b50f17d911eb9adab7038a771836.zip external_llvm-28fc440bc630b50f17d911eb9adab7038a771836.tar.gz external_llvm-28fc440bc630b50f17d911eb9adab7038a771836.tar.bz2 |
Make case of GetNumOfInt/FloatArgRegs functions to be use lower case
like all the other functions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6326 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Target/TargetRegInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Target/TargetRegInfo.h b/include/llvm/Target/TargetRegInfo.h index a57a62f..a03f56d 100644 --- a/include/llvm/Target/TargetRegInfo.h +++ b/include/llvm/Target/TargetRegInfo.h @@ -94,8 +94,8 @@ public: // 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 |