diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-06-27 18:18:41 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-06-27 18:18:41 +0000 |
| commit | d48ce275320a2095237f26ec5a994de9cbff9ab0 (patch) | |
| tree | 648940a1c630681dd89a00e0321bc395fc58925b /llvm/lib/Target/PowerPC/PPCBranchSelector.cpp | |
| parent | 039215b020d46570689b0cbb9c45a0f5573f8537 (diff) | |
| download | llvm-d48ce275320a2095237f26ec5a994de9cbff9ab0.zip llvm-d48ce275320a2095237f26ec5a994de9cbff9ab0.tar.gz llvm-d48ce275320a2095237f26ec5a994de9cbff9ab0.tar.bz2 | |
Implement 64-bit undef, sub, shl/shr, srem/urem
llvm-svn: 28929
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCBranchSelector.cpp')
| -rw-r--r-- | llvm/lib/Target/PowerPC/PPCBranchSelector.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp b/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp index 657ff6c..36f6805 100644 --- a/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp +++ b/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp @@ -52,7 +52,8 @@ static unsigned getNumBytesForInstruction(MachineInstr *MI) { // minor pessimization that saves us from having to worry about // keeping the offsets up to date later when we emit long branch glue. return 8; - case PPC::IMPLICIT_DEF_GPR: // no asm emitted + 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 return 0; |
