diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-04 01:15:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-04 01:15:02 +0000 |
commit | 940cc978ef23d2f3e35904a6ebd9bd456b00f963 (patch) | |
tree | 822748e264b11daf9d5c17416f7d1b9f164c294b /llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp | |
parent | 6e663f1c1ec03c8660a0987e6be8f4d872c78445 (diff) | |
download | bcm5719-llvm-940cc978ef23d2f3e35904a6ebd9bd456b00f963.tar.gz bcm5719-llvm-940cc978ef23d2f3e35904a6ebd9bd456b00f963.zip |
Remove a bunch more SparcV9 specific stuff
llvm-svn: 28093
Diffstat (limited to 'llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp')
-rw-r--r-- | llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp b/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp index 8f6310e4398..85c9da8e642 100644 --- a/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp +++ b/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp @@ -263,7 +263,8 @@ void AlphaRegisterInfo::emitPrologue(MachineFunction &MF) const { .addReg(Alpha::R29).addImm(curgpdist); //evil const_cast until MO stuff setup to handle const - BuildMI(MBB, MBBI, Alpha::ALTENT, 1).addGlobalAddress(const_cast<Function*>(MF.getFunction()), true); + BuildMI(MBB, MBBI, Alpha::ALTENT, 1) + .addGlobalAddress(const_cast<Function*>(MF.getFunction())); // Get the number of bytes to allocate from the FrameInfo long NumBytes = MFI->getStackSize(); |