aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/Alpha/AlphaRegisterInfo.cpp
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2006-02-01 19:37:33 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2006-02-01 19:37:33 +0000
commit77f0885fa3c3f8f8d881f62d182beb06406a22fe (patch)
tree6b41c3199780b5fd160f9cffd5080c2897eeabfc /lib/Target/Alpha/AlphaRegisterInfo.cpp
parent10d7f9a33f0909f72835ad4609448f3092d21499 (diff)
Add immediate forms of cmov and remove some cruft
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25882 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaRegisterInfo.cpp')
-rw-r--r--lib/Target/Alpha/AlphaRegisterInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Alpha/AlphaRegisterInfo.cpp b/lib/Target/Alpha/AlphaRegisterInfo.cpp
index 7bf9bd7c28..658175d250 100644
--- a/lib/Target/Alpha/AlphaRegisterInfo.cpp
+++ b/lib/Target/Alpha/AlphaRegisterInfo.cpp
@@ -350,7 +350,7 @@ void AlphaRegisterInfo::emitEpilogue(MachineFunction &MF,
MachineBasicBlock &MBB) const {
const MachineFrameInfo *MFI = MF.getFrameInfo();
MachineBasicBlock::iterator MBBI = prior(MBB.end());
- assert(((MBBI->getOpcode() == Alpha::RET) || (MBBI->getOpcode() == Alpha::RETDAG))
+ assert(MBBI->getOpcode() == Alpha::RETDAG
&& "Can only insert epilog into returning blocks");
bool FP = hasFP(MF);