diff options
| author | Adrian Prantl <aprantl@apple.com> | 2018-05-02 16:55:16 +0000 |
|---|---|---|
| committer | Adrian Prantl <aprantl@apple.com> | 2018-05-02 16:55:16 +0000 |
| commit | d8f460e864307f6cf71d9dec63fe3a99ddb4f2b5 (patch) | |
| tree | c4e362893448c65bf4d612209af36cf19cf184fc /lldb/source/Expression | |
| parent | 1ab34573197db6efd1eb07b95b836e46f1f88478 (diff) | |
| download | bcm5719-llvm-d8f460e864307f6cf71d9dec63fe3a99ddb4f2b5.tar.gz bcm5719-llvm-d8f460e864307f6cf71d9dec63fe3a99ddb4f2b5.zip | |
Enable AUTOBRIEF in doxygen configuration.
This brings the LLDB configuration closer to LLVM's and removes visual
clutter in the source code by removing the @brief commands from
comments.
This patch also reflows the paragraphs in all doxygen comments.
See also https://reviews.llvm.org/D46290.
Differential Revision: https://reviews.llvm.org/D46321
llvm-svn: 331373
Diffstat (limited to 'lldb/source/Expression')
| -rw-r--r-- | lldb/source/Expression/IRDynamicChecks.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/lldb/source/Expression/IRDynamicChecks.cpp b/lldb/source/Expression/IRDynamicChecks.cpp index 0c8cba2050c..e0a7dca4113 100644 --- a/lldb/source/Expression/IRDynamicChecks.cpp +++ b/lldb/source/Expression/IRDynamicChecks.cpp @@ -109,17 +109,17 @@ static std::string PrintValue(llvm::Value *V, bool truncate = false) { //---------------------------------------------------------------------- /// @class Instrumenter IRDynamicChecks.cpp -/// @brief Finds and instruments individual LLVM IR instructions +/// Finds and instruments individual LLVM IR instructions /// -/// When instrumenting LLVM IR, it is frequently desirable to first search -/// for instructions, and then later modify them. This way iterators -/// remain intact, and multiple passes can look at the same code base without +/// When instrumenting LLVM IR, it is frequently desirable to first search for +/// instructions, and then later modify them. This way iterators remain +/// intact, and multiple passes can look at the same code base without /// treading on each other's toes. /// /// The Instrumenter class implements this functionality. A client first -/// calls Inspect on a function, which populates a list of instructions to -/// be instrumented. Then, later, when all passes' Inspect functions have -/// been called, the client calls Instrument, which adds the desired +/// calls Inspect on a function, which populates a list of instructions to be +/// instrumented. Then, later, when all passes' Inspect functions have been +/// called, the client calls Instrument, which adds the desired /// instrumentation. /// /// A subclass of Instrumenter must override InstrumentInstruction, which @@ -200,8 +200,8 @@ protected: } //------------------------------------------------------------------ - /// Determine whether a single instruction is interesting to - /// instrument, and, if so, call RegisterInstruction + /// Determine whether a single instruction is interesting to instrument, + /// and, if so, call RegisterInstruction /// /// @param[in] i /// The instruction to be inspected. @@ -250,8 +250,8 @@ protected: } //------------------------------------------------------------------ - /// Build a function pointer for a function with signature - /// void (*)(uint8_t*) with a given address + /// Build a function pointer for a function with signature void + /// (*)(uint8_t*) with a given address /// /// @param[in] start_address /// The address of the function. @@ -275,8 +275,8 @@ protected: } //------------------------------------------------------------------ - /// Build a function pointer for a function with signature - /// void (*)(uint8_t*, uint8_t*) with a given address + /// Build a function pointer for a function with signature void + /// (*)(uint8_t*, uint8_t*) with a given address /// /// @param[in] start_address /// The address of the function. |

