diff options
author | Chris Lattner <sabre@nondot.org> | 2007-12-31 04:16:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-12-31 04:16:08 +0000 |
commit | b70e15149601396707d0727ece3a5b836bea6ffb (patch) | |
tree | b1d487978b798b77f0294a76c8a6ef9c860281d4 /lib/CodeGen/SimpleRegisterCoalescing.cpp | |
parent | 1b98919de35bee879f414e9b97b38eeb9df287bc (diff) | |
download | external_llvm-b70e15149601396707d0727ece3a5b836bea6ffb.tar.gz external_llvm-b70e15149601396707d0727ece3a5b836bea6ffb.tar.bz2 external_llvm-b70e15149601396707d0727ece3a5b836bea6ffb.zip |
update a couple of references to SSARegMap.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45468 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SimpleRegisterCoalescing.cpp')
-rw-r--r-- | lib/CodeGen/SimpleRegisterCoalescing.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SimpleRegisterCoalescing.cpp b/lib/CodeGen/SimpleRegisterCoalescing.cpp index da8b39fb2d..d48e1f9baf 100644 --- a/lib/CodeGen/SimpleRegisterCoalescing.cpp +++ b/lib/CodeGen/SimpleRegisterCoalescing.cpp @@ -1410,8 +1410,8 @@ bool SimpleRegisterCoalescing::runOnMachineFunction(MachineFunction &fn) { (*I)->eraseFromParent(); } - // Transfer sub-registers info to SSARegMap now that coalescing information - // is complete. + // Transfer sub-registers info to MachineRegisterInfo now that coalescing + // information is complete. RegSubIdxMap.grow(RegInfo.getLastVirtReg()+1); while (!SubRegIdxes.empty()) { std::pair<unsigned, unsigned> RI = SubRegIdxes.back(); |