[llvm-commits] [llvm] r72604 - in /llvm/trunk/lib: CodeGen/ CodeGen/AsmPrinter/ CodeGen/SelectionDAG/ Support/ System/Unix/ Target/ Target/ARM/ Target/CellSPU/ Target/PIC16/ Target/X86/ Target/X86/AsmPrinter/ Target/XCore/ VMCore/

Bill Wendling isanbard at gmail.com
Mon Jun 1 13:08:20 PDT 2009


On May 30, 2009, at 1:04 AM, Frits van Bommel wrote:

> Bill Wendling wrote:
>> Author: void
>> Date: Fri May 29 20:09:53 2009
>> New Revision: 72604
>>
>> URL: http://llvm.org/viewvc/llvm-project?rev=72604&view=rev
>> Log:
>> Untabification.
>
>> =
>> =
>> =
>> =
>> =
>> =
>> =
>> =
>> =
>> =====================================================================
>> --- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp (original)
>> +++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp Fri May 29  
>> 20:09:53 2009
>> @@ -969,12 +969,6 @@
>>   DbgScope *Parent = NULL;
>>   DIBlock Block(V);
>>
>> -  // Don't create a new scope if we already created one for an  
>> inlined function.
>> -  DenseMap<const GlobalVariable *, DbgScope *>::iterator
>> -    II = AbstractInstanceRootMap.find(V);
>> -  if (II != AbstractInstanceRootMap.end())
>> -    return LexicalScopeStack.back();
>> -
>>   if (!Block.isNull()) {
>>     DIDescriptor ParentDesc = Block.getContext();
>>     Parent =
>> @@ -1030,6 +1024,8 @@
>>       AddLabel(Die, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
>>                DWLabel("func_end", SubprogramCount));
>>
>> +    // Add the scope's contents.
>> +    ConstructDbgScope(ConcreteInst, StartID, EndID, Die, Unit);
>>     ParentDie->AddChild(Die);
>>   }
>
> I don't see any tabs being removed in this part...

Oops...

Weird that the buildbots and nightly tests didn't scream about this...

-bw



More information about the llvm-commits mailing list