[llvm-commits] [llvm] r80630 - /llvm/trunk/lib/CodeGen/TwoAddressInstructionPass.cpp
Evan Cheng
evan.cheng at apple.com
Mon Aug 31 15:36:49 PDT 2009
Thanks. Is this fixing an actual bug? Test case?
Evan
On Aug 31, 2009, at 2:54 PM, Bob Wilson wrote:
> Author: bwilson
> Date: Mon Aug 31 16:54:16 2009
> New Revision: 80630
>
> URL: http://llvm.org/viewvc/llvm-project?rev=80630&view=rev
> Log:
> If the tied registers are already the same, there is no need to change
> them. Move the code to make that change inside the conditional.
>
> Modified:
> llvm/trunk/lib/CodeGen/TwoAddressInstructionPass.cpp
>
> Modified: llvm/trunk/lib/CodeGen/TwoAddressInstructionPass.cpp
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/TwoAddressInstructionPass.cpp?rev=80630&r1=80629&r2=80630&view=diff
>
> =
> =
> =
> =
> =
> =
> =
> =
> ======================================================================
> --- llvm/trunk/lib/CodeGen/TwoAddressInstructionPass.cpp (original)
> +++ llvm/trunk/lib/CodeGen/TwoAddressInstructionPass.cpp Mon Aug 31
> 16:54:16 2009
> @@ -985,13 +985,13 @@
> mi->getOperand(i).getReg() == regB)
> mi->getOperand(i).setReg(regA);
> }
> - }
>
> - assert(mi->getOperand(ti).isDef() && mi->getOperand
> (si).isUse());
> - mi->getOperand(ti).setReg(mi->getOperand(si).getReg());
> - MadeChange = true;
> + assert(mi->getOperand(ti).isDef() && mi->getOperand
> (si).isUse());
> + mi->getOperand(ti).setReg(mi->getOperand(si).getReg());
> + MadeChange = true;
>
> - DEBUG(errs() << "\t\trewrite to:\t" << *mi);
> + DEBUG(errs() << "\t\trewrite to:\t" << *mi);
> + }
> }
>
> mi = nmi;
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
More information about the llvm-commits
mailing list