summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2006-01-26 03:22:07 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2006-01-26 03:22:07 +0000
commit153f808f53503a0200993cb8f0d81b42c5ee43ec (patch)
tree269af123faaf5c48980492e20a92524492978a3f /llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp
parentfcdce6d26fc4fe1ed92f735bc426787afc3835ba (diff)
downloadbcm5719-llvm-153f808f53503a0200993cb8f0d81b42c5ee43ec.tar.gz
bcm5719-llvm-153f808f53503a0200993cb8f0d81b42c5ee43ec.zip
allow R28 to be used for frame calculations without entirely removing it from circulation
llvm-svn: 25639
Diffstat (limited to 'llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp')
-rw-r--r--llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp b/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp
index fb93922aec5..7bf9bd7c28a 100644
--- a/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp
+++ b/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp
@@ -257,7 +257,7 @@ AlphaRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II) const {
" for stack size: " << MF.getFrameInfo()->getStackSize() << "\n");
if (Offset > IMM_HIGH || Offset < IMM_LOW) {
- std::cerr << "Unconditionally using R28 for evil purposes\n";
+ DEBUG(std::cerr << "Unconditionally using R28 for evil purposes Offset: " << Offset << "\n");
//so in this case, we need to use a temporary register, and move the original
//inst off the SP/FP
//fix up the old:
OpenPOWER on IntegriCloud