diff options
author | Akira Hatanaka <ahatanaka@mips.com> | 2012-05-11 01:45:15 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@mips.com> | 2012-05-11 01:45:15 +0000 |
commit | e37614438f45d214ac5bdf46803d7acbd3983848 (patch) | |
tree | 2e0d9a62e5d6e1e4a367c368c137e739caa2194d /llvm/lib/Target/Mips/MipsRegisterInfo.cpp | |
parent | dc1e36e9f519bf12272763df821e1fc298ae2c4f (diff) | |
download | bcm5719-llvm-e37614438f45d214ac5bdf46803d7acbd3983848.tar.gz bcm5719-llvm-e37614438f45d214ac5bdf46803d7acbd3983848.zip |
Fix a misleading comment.
llvm-svn: 156603
Diffstat (limited to 'llvm/lib/Target/Mips/MipsRegisterInfo.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/MipsRegisterInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/MipsRegisterInfo.cpp b/llvm/lib/Target/Mips/MipsRegisterInfo.cpp index aa632235d2d..37b0ed2666f 100644 --- a/llvm/lib/Target/Mips/MipsRegisterInfo.cpp +++ b/llvm/lib/Target/Mips/MipsRegisterInfo.cpp @@ -124,7 +124,7 @@ getReservedRegs(const MachineFunction &MF) const { Reserved.set(Mips::GP_64); } - // If this function has dynamic allocas, reserve FP. + // Reserve FP if this function should have a dedicated frame pointer register. if (MF.getTarget().getFrameLowering()->hasFP(MF)) { Reserved.set(Mips::FP); Reserved.set(Mips::FP_64); |