From: Frederic Riss Date: Fri, 13 Mar 2015 23:30:27 +0000 (+0000) Subject: [dsymutil] Move a function declaration closer to its peers. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f13be986fb038a92ee4ce1efe83d39b426a69949;p=oota-llvm.git [dsymutil] Move a function declaration closer to its peers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232231 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/dsymutil/DwarfLinker.cpp b/tools/dsymutil/DwarfLinker.cpp index 8a4a8935ce5..1880028f9ea 100644 --- a/tools/dsymutil/DwarfLinker.cpp +++ b/tools/dsymutil/DwarfLinker.cpp @@ -95,11 +95,11 @@ public: uint64_t getStartOffset() const { return StartOffset; } uint64_t getNextUnitOffset() const { return NextUnitOffset; } + void setStartOffset(uint64_t DebugInfoSize) { StartOffset = DebugInfoSize; } uint64_t getLowPc() const { return LowPc; } uint64_t getHighPc() const { return HighPc; } - void setStartOffset(uint64_t DebugInfoSize) { StartOffset = DebugInfoSize; } /// \brief Compute the end offset for this unit. Must be /// called after the CU's DIEs have been cloned.