mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 23:48:49 +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…
Reference in New Issue
Block a user