From 77913e039c41548a2ed7539a0f7dd920ef9162cd Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Tue, 3 Dec 2013 00:45:54 +0000 Subject: [PATCH] Reorder member function declarations to match source order. llvm-svn: 196179 --- llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 351637cc02b9..70fe2a167989 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -497,13 +497,14 @@ class DwarfDebug { /// variables. DIE *updateSubprogramScopeDIE(CompileUnit *SPCU, DISubprogram SP); - /// \brief Construct new DW_TAG_lexical_block for this scope and - /// attach DW_AT_low_pc/DW_AT_high_pc labels. - DIE *constructLexicalScopeDIE(CompileUnit *TheCU, LexicalScope *Scope); /// A helper function to check whether the DIE for a given Scope is going /// to be null. bool isLexicalScopeDIENull(LexicalScope *Scope); + /// \brief Construct new DW_TAG_lexical_block for this scope and + /// attach DW_AT_low_pc/DW_AT_high_pc labels. + DIE *constructLexicalScopeDIE(CompileUnit *TheCU, LexicalScope *Scope); + /// \brief This scope represents inlined body of a function. Construct /// DIE to represent this concrete inlined copy of the function. DIE *constructInlinedScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);