Skip to content

[upstreaming] Readd removed dash lines #83

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lldb/include/lldb/Core/AddressRange.h
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ class AddressRange {
/// range, \b false otherwise.
bool ContainsLoadAddress(lldb::addr_t load_addr, Target *target) const;

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

/// Dump a description of this object to a Stream.
Expand Down
2 changes: 2 additions & 0 deletions lldb/include/lldb/Core/Disassembler.h
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ class InstructionList {

lldb::InstructionSP GetInstructionAtIndex(size_t idx) const;

//------------------------------------------------------------------
/// Get the index of the next branch instruction.
///
/// Given a list of instructions, find the next branch instruction
Expand All @@ -291,6 +292,7 @@ class InstructionList {
/// The instruction index of the first branch that is at or past
/// \a start. Returns UINT32_MAX if no matching branches are
/// found.
//------------------------------------------------------------------
uint32_t GetIndexOfNextBranchInstruction(uint32_t start,
Target &target,
bool ignore_calls) const;
Expand Down
2 changes: 2 additions & 0 deletions lldb/include/lldb/Symbol/Block.h
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ class Block : public UserID, public SymbolContextScope {
/// parent.
Block *GetInlinedParent();

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

Expand Down