mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 00:32:55 +00:00
Fix minor detail
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4725 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2752d0aac8
commit
71e83caecd
@ -451,7 +451,7 @@ void ISel::visitMul(BinaryOperator &I) {
|
||||
BuildMI(BB, MovOpcode[Class], 1, Reg).addReg(Op0Reg);
|
||||
|
||||
// Emit the appropriate multiply instruction...
|
||||
BuildMI(BB, MulOpcode[Class], 4)
|
||||
BuildMI(BB, MulOpcode[Class], 3)
|
||||
.addReg(Reg, UseAndDef).addReg(Op1Reg).addClobber(Clobber);
|
||||
|
||||
// Put the result into the destination register...
|
||||
|
@ -451,7 +451,7 @@ void ISel::visitMul(BinaryOperator &I) {
|
||||
BuildMI(BB, MovOpcode[Class], 1, Reg).addReg(Op0Reg);
|
||||
|
||||
// Emit the appropriate multiply instruction...
|
||||
BuildMI(BB, MulOpcode[Class], 4)
|
||||
BuildMI(BB, MulOpcode[Class], 3)
|
||||
.addReg(Reg, UseAndDef).addReg(Op1Reg).addClobber(Clobber);
|
||||
|
||||
// Put the result into the destination register...
|
||||
|
Loading…
x
Reference in New Issue
Block a user