[llvm] r196179 - Reorder member function declarations to match source order.
Eric Christopher
echristo at gmail.com
Mon Dec 2 16:45:54 PST 2013
Author: echristo
Date: Mon Dec 2 18:45:54 2013
New Revision: 196179
URL: http://llvm.org/viewvc/llvm-project?rev=196179&view=rev
Log:
Reorder member function declarations to match source order.
Modified:
llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h
Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h?rev=196179&r1=196178&r2=196179&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h Mon Dec 2 18:45:54 2013
@@ -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);
More information about the llvm-commits
mailing list