fix header

add comments
untabify


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30486 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola
2006-09-19 16:41:40 +00:00
parent 71f3b94fa8
commit 4d4c021758

View File

@@ -1,4 +1,4 @@
//===-- ARMTargetMachine.cpp - Define TargetMachine for ARM ---------------===//
//===-- ARMMul.cpp - Define TargetMachine for A5CRM -----------------------===//
//
// The LLVM Compiler Infrastructure
//
@@ -8,6 +8,7 @@
//
//===----------------------------------------------------------------------===//
//
// Modify the ARM multiplication instructions so that Rd and Rm are distinct
//
//===----------------------------------------------------------------------===//
@@ -50,6 +51,8 @@ bool FixMul::runOnMachineFunction(MachineFunction &MF) {
if(Rd == Rm) {
Changed = true;
if (Rd != Rs) {
//Rd and Rm must be distinct, but Rd can be equal to Rs.
//Swap Rs and Rm
RmOp.setReg(Rs);
RsOp.setReg(Rm);
} else {