80 column and trailing whitespace cleanup

llvm-svn: 109037
This commit is contained in:
Jim Grosbach 2010-07-21 21:21:52 +00:00
parent 47dc8fd67a
commit a8683bb033
1 changed files with 173 additions and 171 deletions

View File

@ -132,7 +132,8 @@ public:
/// getDIEEntry - Returns the debug information entry for the speciefied /// getDIEEntry - Returns the debug information entry for the speciefied
/// debug variable. /// debug variable.
DIEEntry *getDIEEntry(const MDNode *N) { DIEEntry *getDIEEntry(const MDNode *N) {
DenseMap<const MDNode *, DIEEntry *>::iterator I = MDNodeToDIEEntryMap.find(N); DenseMap<const MDNode *, DIEEntry *>::iterator I =
MDNodeToDIEEntryMap.find(N);
if (I == MDNodeToDIEEntryMap.end()) if (I == MDNodeToDIEEntryMap.end())
return NULL; return NULL;
return I->second; return I->second;
@ -2722,7 +2723,8 @@ void DwarfDebug::beginFunction(const MachineFunction *MF) {
describes(MF->getFunction())) describes(MF->getFunction()))
InsnNeedsLabel.insert(MI); InsnNeedsLabel.insert(MI);
// DBG_VALUE indicating argument location change needs a label. // DBG_VALUE indicating argument location change needs a label.
else if (isDbgValueInUndefinedReg(MI) == false && !ProcessedArgs.insert(DV)) else if (isDbgValueInUndefinedReg(MI) == false
&& !ProcessedArgs.insert(DV))
InsnNeedsLabel.insert(MI); InsnNeedsLabel.insert(MI);
} else { } else {
// If location is unknown then instruction needs a location only if // If location is unknown then instruction needs a location only if