diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-03-15 00:03:38 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-03-15 00:03:38 +0000 |
commit | 0e7b00d79f9ca50edd2945135772f9a2d0f25ea0 (patch) | |
tree | 678f788cbcb1f9edaf2f8dc774fd3f8a50855f85 /llvm/lib/Target/PowerPC/PPCBranchSelector.cpp | |
parent | 6c6075e326a1d683f79a73730860646153c97273 (diff) | |
download | bcm5719-llvm-0e7b00d79f9ca50edd2945135772f9a2d0f25ea0.tar.gz bcm5719-llvm-0e7b00d79f9ca50edd2945135772f9a2d0f25ea0.zip |
Replace all target specific implicit def instructions with a target independent one: TargetInstrInfo::IMPLICIT_DEF.
llvm-svn: 48380
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCBranchSelector.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCBranchSelector.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp b/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp index b4b67a2d207..6977093923a 100644 --- a/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp +++ b/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp @@ -59,12 +59,6 @@ FunctionPass *llvm::createPPCBranchSelectionPass() { /// static unsigned getNumBytesForInstruction(MachineInstr *MI) { switch (MI->getOpcode()) { - case PPC::IMPLICIT_DEF_GPRC: // no asm emitted - case PPC::IMPLICIT_DEF_G8RC: // no asm emitted - case PPC::IMPLICIT_DEF_F4: // no asm emitted - case PPC::IMPLICIT_DEF_F8: // no asm emitted - case PPC::IMPLICIT_DEF_VRRC: // no asm emitted - return 0; case PPC::INLINEASM: { // Inline Asm: Variable size. MachineFunction *MF = MI->getParent()->getParent(); const char *AsmStr = MI->getOperand(0).getSymbolName(); |