From 627bb2afb9706d821de3220b877fa75d4c38fa4a Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Fri, 16 Jan 2009 18:01:58 +0000 Subject: [PATCH] Align source code. llvm-svn: 62328 --- lib/CodeGen/AsmPrinter/DwarfWriter.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/CodeGen/AsmPrinter/DwarfWriter.cpp b/lib/CodeGen/AsmPrinter/DwarfWriter.cpp index ab66887d625..1b3f8eb8054 100644 --- a/lib/CodeGen/AsmPrinter/DwarfWriter.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfWriter.cpp @@ -1232,11 +1232,11 @@ public: class DbgScope { private: DbgScope *Parent; // Parent to this scope. - DIDescriptor Desc; // Debug info descriptor for scope. + DIDescriptor Desc; // Debug info descriptor for scope. // Either subprogram or block. unsigned StartLabelID; // Label ID of the beginning of scope. unsigned EndLabelID; // Label ID of the end of scope. - SmallVector Scopes; // Scopes defined in scope. + SmallVector Scopes; // Scopes defined in scope. SmallVector Variables;// Variables declared in scope. public: @@ -1249,8 +1249,8 @@ public: } // Accessors. - DbgScope *getParent() const { return Parent; } - DIDescriptor getDesc() const { return Desc; } + DbgScope *getParent() const { return Parent; } + DIDescriptor getDesc() const { return Desc; } unsigned getStartLabelID() const { return StartLabelID; } unsigned getEndLabelID() const { return EndLabelID; } SmallVector &getScopes() { return Scopes; }