diff options
author | Akira Hatanaka <ahatanaka@mips.com> | 2012-06-14 21:10:56 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@mips.com> | 2012-06-14 21:10:56 +0000 |
commit | 5fd22485a301f2f1e572abb359beda44573d863f (patch) | |
tree | 8a993c9172149d0cc23dde9be5baf8266f988f86 /llvm/lib/Target/Mips/MipsAsmPrinter.cpp | |
parent | d8ab16b86f7a252b5896388e84288a8dfb216bb9 (diff) | |
download | bcm5719-llvm-5fd22485a301f2f1e572abb359beda44573d863f.tar.gz bcm5719-llvm-5fd22485a301f2f1e572abb359beda44573d863f.zip |
Fix coding style violations. Remove white spaces and tabs.
llvm-svn: 158471
Diffstat (limited to 'llvm/lib/Target/Mips/MipsAsmPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/MipsAsmPrinter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/Mips/MipsAsmPrinter.cpp b/llvm/lib/Target/Mips/MipsAsmPrinter.cpp index 2c8b19b5251..d6de1324631 100644 --- a/llvm/lib/Target/Mips/MipsAsmPrinter.cpp +++ b/llvm/lib/Target/Mips/MipsAsmPrinter.cpp @@ -386,7 +386,7 @@ void MipsAsmPrinter::printOperand(const MachineInstr *MI, int opNum, break; case MachineOperand::MO_BlockAddress: { - MCSymbol* BA = GetBlockAddressSymbol(MO.getBlockAddress()); + MCSymbol *BA = GetBlockAddressSymbol(MO.getBlockAddress()); O << BA->getName(); break; } @@ -447,7 +447,7 @@ printMemOperandEA(const MachineInstr *MI, int opNum, raw_ostream &O) { void MipsAsmPrinter:: printFCCOperand(const MachineInstr *MI, int opNum, raw_ostream &O, const char *Modifier) { - const MachineOperand& MO = MI->getOperand(opNum); + const MachineOperand &MO = MI->getOperand(opNum); O << Mips::MipsFCCToString((Mips::CondCode)MO.getImm()); } |