summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-12-03 00:45:54 +0000
committerEric Christopher <echristo@gmail.com>2013-12-03 00:45:54 +0000
commit16df1b227cf43827ea6d6b2c4b904750dc8b453f (patch)
tree47b759f2c8f581a455c4a403219113673e0951da /lib
parentc2efbdbb6022149b6b94188efd85b72abe19b0ba (diff)
downloadllvm-16df1b227cf43827ea6d6b2c4b904750dc8b453f.tar.gz
llvm-16df1b227cf43827ea6d6b2c4b904750dc8b453f.tar.bz2
llvm-16df1b227cf43827ea6d6b2c4b904750dc8b453f.tar.xz
Reorder member function declarations to match source order.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196179 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfDebug.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.h b/lib/CodeGen/AsmPrinter/DwarfDebug.h
index 351637cc02..70fe2a1679 100644
--- a/lib/CodeGen/AsmPrinter/DwarfDebug.h
+++ b/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);