diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-05-10 16:53:12 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-05-10 16:53:12 +0000 |
commit | 7501a81a50fce5c6bb2ac202189a1f72d4493768 (patch) | |
tree | 578de70970a31ae711c12f7f462ec7e83f7754ec /llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp | |
parent | 3c5d2c8a241928f2cba24711471ca17369c09295 (diff) | |
download | bcm5719-llvm-7501a81a50fce5c6bb2ac202189a1f72d4493768.tar.gz bcm5719-llvm-7501a81a50fce5c6bb2ac202189a1f72d4493768.zip |
Remove unused function.
llvm-svn: 181606
Diffstat (limited to 'llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp')
-rw-r--r-- | llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp b/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp index d8b4e2fcb36..d59d7d3382f 100644 --- a/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp +++ b/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp @@ -295,16 +295,6 @@ unsigned HexagonRegisterInfo::getStackRegister() const { return Hexagon::R29; } -void HexagonRegisterInfo::getInitialFrameState(std::vector<MachineMove> - &Moves) const -{ - // VirtualFP = (R30 + #0). - unsigned FPReg = getFrameRegister(); - MachineLocation Dst(MachineLocation::VirtualFP); - MachineLocation Src(FPReg, 0); - Moves.push_back(MachineMove(0, Dst, Src)); -} - unsigned HexagonRegisterInfo::getEHExceptionRegister() const { llvm_unreachable("What is the exception register"); } |