diff options
author | Owen Anderson <resistor@mac.com> | 2009-06-26 00:15:27 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-06-26 00:15:27 +0000 |
commit | 94326677f033d604b790d3efdc66237bc582c126 (patch) | |
tree | 6c1da0a8eea794bb7d74f67c37613f58d8a5b450 | |
parent | a3e3175bdd36e24a5f3014c6cda0ff93a6774549 (diff) |
Privatize a static variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74234 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/Alpha/AlphaRegisterInfo.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/Alpha/AlphaRegisterInfo.h b/lib/Target/Alpha/AlphaRegisterInfo.h index c4f5f7b421..c9ae4b7fc3 100644 --- a/lib/Target/Alpha/AlphaRegisterInfo.h +++ b/lib/Target/Alpha/AlphaRegisterInfo.h @@ -60,6 +60,9 @@ struct AlphaRegisterInfo : public AlphaGenRegisterInfo { int getDwarfRegNum(unsigned RegNum, bool isEH) const; static std::string getPrettyName(unsigned reg); + +private: + int curgpdist; }; } // end namespace llvm |