[llvm] r205585 - Tidy up. Space before ':' in range-based for loops.
Jim Grosbach
grosbach at apple.com
Thu Apr 3 16:43:26 PDT 2014
Author: grosbach
Date: Thu Apr 3 18:43:26 2014
New Revision: 205585
URL: http://llvm.org/viewvc/llvm-project?rev=205585&view=rev
Log:
Tidy up. Space before ':' in range-based for loops.
Modified:
llvm/trunk/lib/Target/ARM64/ARM64AddressTypePromotion.cpp
llvm/trunk/lib/Target/ARM64/ARM64BranchRelaxation.cpp
llvm/trunk/lib/Target/ARM64/ARM64CollectLOH.cpp
llvm/trunk/lib/Target/ARM64/ARM64PromoteConstant.cpp
llvm/trunk/lib/Target/ARM64/ARM64StorePairSuppress.cpp
Modified: llvm/trunk/lib/Target/ARM64/ARM64AddressTypePromotion.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM64/ARM64AddressTypePromotion.cpp?rev=205585&r1=205584&r2=205585&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM64/ARM64AddressTypePromotion.cpp (original)
+++ llvm/trunk/lib/Target/ARM64/ARM64AddressTypePromotion.cpp Thu Apr 3 18:43:26 2014
@@ -380,7 +380,7 @@ void ARM64AddressTypePromotion::mergeSEx
SetOfInstructions &ToRemove) {
DominatorTree &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
- for (auto &Entry: ValToSExtendedUses) {
+ for (auto &Entry : ValToSExtendedUses) {
Instructions &Insts = Entry.second;
Instructions CurPts;
for (Instruction *Inst : Insts) {
@@ -421,7 +421,7 @@ void ARM64AddressTypePromotion::analyzeS
DenseMap<Value *, Instruction *> SeenChains;
for (auto &BB : *Func) {
- for (auto &II: BB) {
+ for (auto &II : BB) {
Instruction *SExt = &II;
// Collect all sext operation per type.
Modified: llvm/trunk/lib/Target/ARM64/ARM64BranchRelaxation.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM64/ARM64BranchRelaxation.cpp?rev=205585&r1=205584&r2=205585&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM64/ARM64BranchRelaxation.cpp (original)
+++ llvm/trunk/lib/Target/ARM64/ARM64BranchRelaxation.cpp Thu Apr 3 18:43:26 2014
@@ -120,7 +120,7 @@ void ARM64BranchRelaxation::verify() {
/// print block size and offset information - debugging
void ARM64BranchRelaxation::dumpBBs() {
- for (auto &MBB: *MF) {
+ for (auto &MBB : *MF) {
const BasicBlockInfo &BBI = BlockInfo[MBB.getNumber()];
dbgs() << format("BB#%u\toffset=%08x\t", MBB.getNumber(), BBI.Offset)
<< format("size=%#x\n", BBI.Size);
Modified: llvm/trunk/lib/Target/ARM64/ARM64CollectLOH.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM64/ARM64CollectLOH.cpp?rev=205585&r1=205584&r2=205585&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM64/ARM64CollectLOH.cpp (original)
+++ llvm/trunk/lib/Target/ARM64/ARM64CollectLOH.cpp Thu Apr 3 18:43:26 2014
@@ -650,7 +650,7 @@ static void computeADRP(const InstrToIns
ARM64FunctionInfo &ARM64FI,
const MachineDominatorTree *MDT) {
DEBUG(dbgs() << "*** Compute LOH for ADRP\n");
- for (const auto &Entry: UseToDefs) {
+ for (const auto &Entry : UseToDefs) {
unsigned Size = Entry.second.size();
if (Size == 0)
continue;
@@ -923,7 +923,7 @@ static void computeOthers(const InstrToI
}
}
bool Found = false;
- for (auto &Use: *Users) {
+ for (auto &Use : *Users) {
if (!DefsOfPotentialCandidates.count(Use)) {
++NumTooCplxLvl1;
Found = true;
Modified: llvm/trunk/lib/Target/ARM64/ARM64PromoteConstant.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM64/ARM64PromoteConstant.cpp?rev=205585&r1=205584&r2=205585&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM64/ARM64PromoteConstant.cpp (original)
+++ llvm/trunk/lib/Target/ARM64/ARM64PromoteConstant.cpp Thu Apr 3 18:43:26 2014
@@ -93,7 +93,7 @@ public:
bool runOnModule(Module &M) {
DEBUG(dbgs() << getPassName() << '\n');
bool Changed = false;
- for (auto &MF: M) {
+ for (auto &MF : M) {
Changed |= runOnFunction(MF);
}
return Changed;
@@ -566,7 +566,7 @@ bool ARM64PromoteConstant::runOnFunction
SmallSet<Constant *, 8> AlreadyChecked;
for (auto &MBB : F) {
- for (auto &MI: MBB) {
+ for (auto &MI : MBB) {
// Traverse the operand, looking for constant vectors
// Replace them by a load of a global variable of type constant vector
for (unsigned OpIdx = 0, EndOpIdx = MI.getNumOperands();
Modified: llvm/trunk/lib/Target/ARM64/ARM64StorePairSuppress.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM64/ARM64StorePairSuppress.cpp?rev=205585&r1=205584&r2=205585&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM64/ARM64StorePairSuppress.cpp (original)
+++ llvm/trunk/lib/Target/ARM64/ARM64StorePairSuppress.cpp Thu Apr 3 18:43:26 2014
@@ -138,10 +138,10 @@ bool ARM64StorePairSuppress::runOnMachin
// precisely determine whether a store pair can be formed. But we do want to
// filter out most situations where we can't form store pairs to avoid
// computing trace metrics in those cases.
- for (auto &MBB: *MF) {
+ for (auto &MBB : *MF) {
bool SuppressSTP = false;
unsigned PrevBaseReg = 0;
- for (auto &MI: MBB) {
+ for (auto &MI : MBB) {
if (!isNarrowFPStore(MI))
continue;
unsigned BaseReg;
More information about the llvm-commits
mailing list