diff options
author | Devang Patel <dpatel@apple.com> | 2009-01-16 18:01:58 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-01-16 18:01:58 +0000 |
commit | 7103c6a993af878ebd9767e344a33919dc2c4342 (patch) | |
tree | 8bc1e0e2082f1b588bde9d16436a16284439cb58 /lib | |
parent | 79ce4cea4701259c1aa70d59d3544ed00e9ab7f0 (diff) |
Align source code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62328 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfWriter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfWriter.cpp b/lib/CodeGen/AsmPrinter/DwarfWriter.cpp index ab66887d62..1b3f8eb805 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<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; } |