Skip to content

Commit d0a4f47

Browse files
author
git apple-llvm automerger
committed
Merge commit '23bf98e4b5b7' from llvm.org/main into next
2 parents be8d07e + 23bf98e commit d0a4f47

File tree

8 files changed

+28
-31
lines changed

8 files changed

+28
-31
lines changed

lldb/include/lldb/Core/Mangled.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -277,11 +277,11 @@ class Mangled {
277277
void Encode(DataEncoder &encoder, ConstStringTable &strtab) const;
278278

279279
private:
280-
///< The mangled version of the name.
280+
/// The mangled version of the name.
281281
ConstString m_mangled;
282282

283-
///< Mutable so we can get it on demand with
284-
///< a const version of this object.
283+
/// Mutable so we can get it on demand with
284+
/// a const version of this object.
285285
mutable ConstString m_demangled;
286286
};
287287

lldb/include/lldb/Core/Module.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -986,8 +986,8 @@ class Module : public std::enable_shared_from_this<Module>,
986986
/// names we are looking for
987987
lldb::FunctionNameType m_name_type_mask = lldb::eFunctionNameTypeNone;
988988

989-
///< If \b true, then demangled names that match will need to contain
990-
///< "m_name" in order to be considered a match
989+
/// If \b true, then demangled names that match will need to contain
990+
/// "m_name" in order to be considered a match
991991
bool m_match_name_after_lookup = false;
992992
};
993993

lldb/include/lldb/Interpreter/CommandInterpreter.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -246,12 +246,12 @@ class CommandInterpreter : public Broadcaster,
246246
};
247247

248248
enum CommandTypes {
249-
eCommandTypesBuiltin = 0x0001, //< native commands such as "frame"
250-
eCommandTypesUserDef = 0x0002, //< scripted commands
251-
eCommandTypesUserMW = 0x0004, //< multiword commands (command containers)
252-
eCommandTypesAliases = 0x0008, //< aliases such as "po"
253-
eCommandTypesHidden = 0x0010, //< commands prefixed with an underscore
254-
eCommandTypesAllThem = 0xFFFF //< all commands
249+
eCommandTypesBuiltin = 0x0001, ///< native commands such as "frame"
250+
eCommandTypesUserDef = 0x0002, ///< scripted commands
251+
eCommandTypesUserMW = 0x0004, ///< multiword commands (command containers)
252+
eCommandTypesAliases = 0x0008, ///< aliases such as "po"
253+
eCommandTypesHidden = 0x0010, ///< commands prefixed with an underscore
254+
eCommandTypesAllThem = 0xFFFF ///< all commands
255255
};
256256

257257
using CommandReturnObjectCallback =

lldb/include/lldb/Symbol/SymbolFile.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -218,13 +218,13 @@ class SymbolFile : public PluginInterface {
218218
struct ArrayInfo {
219219
int64_t first_index = 0;
220220

221-
///< Each entry belongs to a distinct DW_TAG_subrange_type.
222-
///< For multi-dimensional DW_TAG_array_types we would have
223-
///< an entry for each dimension. An entry represents the
224-
///< optional element count of the subrange.
221+
/// Each entry belongs to a distinct DW_TAG_subrange_type.
222+
/// For multi-dimensional DW_TAG_array_types we would have
223+
/// an entry for each dimension. An entry represents the
224+
/// optional element count of the subrange.
225225
///
226-
///< The order of entries follows the order of the DW_TAG_subrange_type
227-
///< children of this DW_TAG_array_type.
226+
/// The order of entries follows the order of the DW_TAG_subrange_type
227+
/// children of this DW_TAG_array_type.
228228
llvm::SmallVector<std::optional<uint64_t>, 1> element_orders;
229229
uint32_t byte_stride = 0;
230230
uint32_t bit_stride = 0;

lldb/include/lldb/Target/Target.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -602,9 +602,9 @@ class EvaluateExpressionOptions {
602602
mutable uint32_t m_pound_line_line = 0;
603603
bool m_prepare_playground_stub_functions = true;
604604

605-
///< During expression evaluation, any SymbolContext in this list will be
606-
///< used for symbol/function lookup before any other context (except for
607-
///< the module corresponding to the current frame).
605+
/// During expression evaluation, any SymbolContext in this list will be
606+
/// used for symbol/function lookup before any other context (except for
607+
/// the module corresponding to the current frame).
608608
SymbolContextList m_preferred_lookup_contexts;
609609
};
610610

lldb/include/lldb/ValueObject/ValueObjectVariable.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,9 @@ class ValueObjectVariable : public ValueObject {
7575

7676
/// The variable that this value object is based upon.
7777
lldb::VariableSP m_variable_sp;
78-
///< The value that DWARFExpression resolves this variable to before we patch
79-
///< it up.
78+
79+
/// The value that DWARFExpression resolves this variable to before we patch
80+
/// it up.
8081
Value m_resolved_value;
8182

8283
private:

lldb/source/Plugins/InstrumentationRuntime/Utility/Utility.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@
1313

1414
namespace lldb_private {
1515

16-
///< On Darwin, if LLDB loaded libclang_rt, it's coming from a locally built
17-
///< compiler-rt, and we should prefer it in favour of the system sanitizers.
18-
///< This helper searches the target for such a dylib. Returns nullptr if no
19-
///< such dylib was found.
2016
lldb::ModuleSP GetPreferredAsanModule(const Target &target) {
2117
lldb::ModuleSP module;
2218
llvm::Regex pattern(R"(libclang_rt\.asan_.*_dynamic\.dylib)");

lldb/source/Plugins/InstrumentationRuntime/Utility/Utility.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ namespace lldb_private {
1515

1616
class Target;
1717

18-
///< On Darwin, if LLDB loaded libclang_rt, it's coming from a locally built
19-
///< compiler-rt, and we should prefer it in favour of the system sanitizers
20-
///< when running InstrumentationRuntime utility expressions that use symbols
21-
///< from the sanitizer libraries. This helper searches the target for such a
22-
///< dylib. Returns nullptr if no such dylib was found.
18+
/// On Darwin, if LLDB loaded libclang_rt, it's coming from a locally built
19+
/// compiler-rt, and we should prefer it in favour of the system sanitizers
20+
/// when running InstrumentationRuntime utility expressions that use symbols
21+
/// from the sanitizer libraries. This helper searches the target for such a
22+
/// dylib. Returns nullptr if no such dylib was found.
2323
lldb::ModuleSP GetPreferredAsanModule(const Target &target);
2424

2525
} // namespace lldb_private

0 commit comments

Comments
 (0)