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/MipsDelaySlotFiller.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/MipsDelaySlotFiller.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp b/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp index 9e0ae1f3a79..2bba8a38024 100644 --- a/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp +++ b/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp @@ -76,14 +76,14 @@ namespace { InstrIter candidate); void insertCallUses(InstrIter MI, - SmallSet<unsigned, 32>& RegDefs, - SmallSet<unsigned, 32>& RegUses); + SmallSet<unsigned, 32> &RegDefs, + SmallSet<unsigned, 32> &RegUses); void insertDefsUses(InstrIter MI, - SmallSet<unsigned, 32>& RegDefs, - SmallSet<unsigned, 32>& RegUses); + SmallSet<unsigned, 32> &RegDefs, + SmallSet<unsigned, 32> &RegUses); - bool IsRegInSet(SmallSet<unsigned, 32>& RegSet, + bool IsRegInSet(SmallSet<unsigned, 32> &RegSet, unsigned Reg); bool delayHasHazard(InstrIter candidate, @@ -230,8 +230,8 @@ bool Filler::delayHasHazard(InstrIter candidate, // Insert Defs and Uses of MI into the sets RegDefs and RegUses. void Filler::insertDefsUses(InstrIter MI, - SmallSet<unsigned, 32>& RegDefs, - SmallSet<unsigned, 32>& RegUses) { + SmallSet<unsigned, 32> &RegDefs, + SmallSet<unsigned, 32> &RegUses) { // If MI is a call or return, just examine the explicit non-variadic operands. MCInstrDesc MCID = MI->getDesc(); unsigned e = MI->isCall() || MI->isReturn() ? MCID.getNumOperands() : @@ -256,7 +256,7 @@ void Filler::insertDefsUses(InstrIter MI, } //returns true if the Reg or its alias is in the RegSet. -bool Filler::IsRegInSet(SmallSet<unsigned, 32>& RegSet, unsigned Reg) { +bool Filler::IsRegInSet(SmallSet<unsigned, 32> &RegSet, unsigned Reg) { // Check Reg and all aliased Registers. for (MCRegAliasIterator AI(Reg, TM.getRegisterInfo(), true); AI.isValid(); ++AI) |