Align source code.
authorDevang Patel <dpatel@apple.com>
Fri, 16 Jan 2009 18:01:58 +0000 (18:01 +0000)
committerDevang Patel <dpatel@apple.com>
Fri, 16 Jan 2009 18:01:58 +0000 (18:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62328 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/DwarfWriter.cpp

index ab66887d625d7cf0273b39f2994d00c7c60e91eb..1b3f8eb8054de5383b161bd8f1cb612218a2c159 100644 (file)
@@ -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<DbgScope *, 4> Scopes;     // Scopes defined in scope.
+  SmallVector<DbgScope *, 4> Scopes;  // Scopes defined in scope.
   SmallVector<DbgVariable *, 8> 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<DbgScope *, 4> &getScopes() { return Scopes; }