More newline cleanups.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151235 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2012-02-23 03:39:43 +00:00
parent 244136770b
commit 0822e010d1
2 changed files with 4 additions and 4 deletions

View File

@ -368,7 +368,7 @@ int FunctionLoweringInfo::getArgumentFrameIndex(const Argument *A) {
ByValArgFrameIndexMap.find(A); ByValArgFrameIndexMap.find(A);
if (I != ByValArgFrameIndexMap.end()) if (I != ByValArgFrameIndexMap.end())
return I->second; return I->second;
DEBUG(dbgs() << "Argument does not have assigned frame index!"); DEBUG(dbgs() << "Argument does not have assigned frame index!\n");
return 0; return 0;
} }

View File

@ -965,7 +965,7 @@ void SelectionDAGBuilder::resolveDanglingDebugInfo(const Value *V,
DAG.AddDbgValue(SDV, Val.getNode(), false); DAG.AddDbgValue(SDV, Val.getNode(), false);
} }
} else } else
DEBUG(dbgs() << "Dropping debug info for " << DI); DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
DanglingDebugInfoMap[V] = DanglingDebugInfo(); DanglingDebugInfoMap[V] = DanglingDebugInfo();
} }
} }
@ -4621,7 +4621,7 @@ SelectionDAGBuilder::visitIntrinsicCall(const CallInst &I, unsigned Intrinsic) {
} }
} }
} }
DEBUG(dbgs() << "Dropping debug info for " << DI); DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
} }
} }
return 0; return 0;
@ -4667,7 +4667,7 @@ SelectionDAGBuilder::visitIntrinsicCall(const CallInst &I, unsigned Intrinsic) {
} else { } else {
// We may expand this to cover more cases. One case where we have no // We may expand this to cover more cases. One case where we have no
// data available is an unreferenced parameter. // data available is an unreferenced parameter.
DEBUG(dbgs() << "Dropping debug info for " << DI); DEBUG(dbgs() << "Dropping debug info for " << DI << "\n");
} }
} }