Skip to content

Commit a0ff264

Browse files
authored
Merge pull request #83 from Teemperor/RevertRemovedDashLInes
[upstreaming] Readd removed dash lines
2 parents c9a408d + b2a4c40 commit a0ff264

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

lldb/include/lldb/Core/AddressRange.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ class AddressRange {
156156
/// range, \b false otherwise.
157157
bool ContainsLoadAddress(lldb::addr_t load_addr, Target *target) const;
158158

159+
//------------------------------------------------------------------
159160
/// Extends this range with \b rhs_range if it overlaps this range on the
160161
/// right side. The range overlaps on the right side if the base address
161162
/// of \b rhs_range lies within this range or if it's contiguous on its
@@ -166,6 +167,7 @@ class AddressRange {
166167
///
167168
/// @return
168169
/// Returns \b true if this range was extended, \b false otherwise.
170+
//------------------------------------------------------------------
169171
bool Extend(const AddressRange &rhs_range);
170172

171173
/// Dump a description of this object to a Stream.

lldb/include/lldb/Core/Disassembler.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,7 @@ class InstructionList {
270270

271271
lldb::InstructionSP GetInstructionAtIndex(size_t idx) const;
272272

273+
//------------------------------------------------------------------
273274
/// Get the index of the next branch instruction.
274275
///
275276
/// Given a list of instructions, find the next branch instruction
@@ -291,6 +292,7 @@ class InstructionList {
291292
/// The instruction index of the first branch that is at or past
292293
/// \a start. Returns UINT32_MAX if no matching branches are
293294
/// found.
295+
//------------------------------------------------------------------
294296
uint32_t GetIndexOfNextBranchInstruction(uint32_t start,
295297
Target &target,
296298
bool ignore_calls) const;

lldb/include/lldb/Symbol/Block.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@ class Block : public UserID, public SymbolContextScope {
185185
/// parent.
186186
Block *GetInlinedParent();
187187

188+
//------------------------------------------------------------------
188189
/// Get the inlined block at the given call site that contains this block.
189190
///
190191
/// @param[in] find_call_site
@@ -196,6 +197,7 @@ class Block : public UserID, public SymbolContextScope {
196197
/// it will return this block, otherwise the parent blocks will be
197198
/// searched to see if any is at the call site. nullptr will be returned
198199
/// if no block is found at the call site.
200+
//------------------------------------------------------------------
199201
Block *
200202
GetContainingInlinedBlockWithCallSite(const Declaration &find_call_site);
201203

0 commit comments

Comments
 (0)