Remove debugging code, fix encoding problem. This fixes the problems

the JIT had last night.

llvm-svn: 16766
This commit is contained in:
Chris Lattner 2004-10-06 14:31:50 +00:00
parent 9a1fbaf1e9
commit 93867e516a
2 changed files with 2 additions and 3 deletions

View File

@ -2747,7 +2747,6 @@ void X86ISel::emitDivRemOperation(MachineBasicBlock *BB,
int V = CI->getValue();
if (V == 2 || V == -2) { // X % 2, X % -2
std::cerr << "SREM 2\n";
static const unsigned SExtOpcode[] = { X86::CBW, X86::CWD, X86::CDQ };
static const unsigned BaseReg[] = { X86::AL , X86::AX , X86::EAX };
static const unsigned SExtReg[] = { X86::AH , X86::DX , X86::EDX };

View File

@ -992,8 +992,8 @@ def SBB32rm : I<0x1B, MRMSrcMem, (ops R32:$dst, R32:$src1, i32mem:$src2),
def SBB32ri : Ii32<0x81, MRM3r, (ops R32:$dst, R32:$src1, i32imm:$src2),
"sbb{l} {$src2, $dst|$dst, $src2}">;
def SBB16ri8 : Ii16<0x83, MRM3r, (ops R16:$dst, R16:$src1, i8imm:$src2),
"sbb{w} {$src2, $dst|$dst, $src2}">, OpSize;
def SBB16ri8 : Ii8<0x83, MRM3r, (ops R16:$dst, R16:$src1, i8imm:$src2),
"sbb{w} {$src2, $dst|$dst, $src2}">, OpSize;
def SBB32ri8 : Ii8<0x83, MRM3r, (ops R32:$dst, R32:$src1, i8imm:$src2),
"sbb{l} {$src2, $dst|$dst, $src2}">;