diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-02-19 00:42:33 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-02-19 00:42:33 +0000 |
commit | 04aff708fd76334f6cef0ed1afdd7de5c8b441a6 (patch) | |
tree | d554df908abaac5d06d1cf8e2f001840c3b99892 /llvm/lib/CodeGen/SplitKit.h | |
parent | 13eb3650b05036bf9ecc8176ed92127aa4a0c708 (diff) | |
download | bcm5719-llvm-04aff708fd76334f6cef0ed1afdd7de5c8b441a6.tar.gz bcm5719-llvm-04aff708fd76334f6cef0ed1afdd7de5c8b441a6.zip |
Missed member rename for naming convention.
llvm-svn: 126003
Diffstat (limited to 'llvm/lib/CodeGen/SplitKit.h')
-rw-r--r-- | llvm/lib/CodeGen/SplitKit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SplitKit.h b/llvm/lib/CodeGen/SplitKit.h index 6f771b65525..7adc0be10de 100644 --- a/llvm/lib/CodeGen/SplitKit.h +++ b/llvm/lib/CodeGen/SplitKit.h @@ -260,7 +260,7 @@ public: /// - Rewrite instructions with finish(). /// class SplitEditor { - SplitAnalysis &sa_; + SplitAnalysis &SA; LiveIntervals &LIS; VirtRegMap &VRM; MachineRegisterInfo &MRI; @@ -315,7 +315,7 @@ public: MachineDominatorTree&, LiveRangeEdit&); /// getAnalysis - Get the corresponding analysis. - SplitAnalysis &getAnalysis() { return sa_; } + SplitAnalysis &getAnalysis() { return SA; } /// Create a new virtual register and live interval. void openIntv(); |