[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/
Frits van Bommel
fvbommel at wxs.nl
Sat May 30 01:04:25 PDT 2009
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...
More information about the llvm-commits
mailing list