@@ -169,7 +169,7 @@ class Instruction {
169169
170170 virtual bool IsAuthenticated () = 0;
171171
172- bool CanSetBreakpoint ();
172+ bool CanSetBreakpoint ();
173173
174174 virtual size_t Decode (const Disassembler &disassembler,
175175 const DataExtractor &data,
@@ -282,7 +282,7 @@ std::function<bool(const Instruction::Operand &)> FetchImmOp(int64_t &imm);
282282
283283std::function<bool (const Instruction::Operand &)>
284284MatchOpType (Instruction::Operand::Type type);
285- }
285+ } // namespace OperandMatchers
286286
287287class InstructionList {
288288public:
@@ -316,20 +316,19 @@ class InstructionList {
316316 // / @param[in] ignore_calls
317317 // / It true, then fine the first branch instruction that isn't
318318 // / a function call (a branch that calls and returns to the next
319- // / instruction). If false, find the instruction index of any
319+ // / instruction). If false, find the instruction index of any
320320 // / branch in the list.
321- // /
321+ // /
322322 // / @param[out] found_calls
323- // / If non-null, this will be set to true if any calls were found in
323+ // / If non-null, this will be set to true if any calls were found in
324324 // / extending the range.
325- // /
325+ // /
326326 // / @return
327327 // / The instruction index of the first branch that is at or past
328- // / \a start. Returns UINT32_MAX if no matching branches are
328+ // / \a start. Returns UINT32_MAX if no matching branches are
329329 // / found.
330330 // ------------------------------------------------------------------
331- uint32_t GetIndexOfNextBranchInstruction (uint32_t start,
332- bool ignore_calls,
331+ uint32_t GetIndexOfNextBranchInstruction (uint32_t start, bool ignore_calls,
333332 bool *found_calls) const ;
334333
335334 uint32_t GetIndexOfInstructionAtLoadAddress (lldb::addr_t load_addr,
@@ -399,6 +398,7 @@ class Disassembler : public std::enable_shared_from_this<Disassembler>,
399398 eOptionMarkPCAddress =
400399 (1u << 3 ), // Mark the disassembly line the contains the PC
401400 eOptionShowControlFlowKind = (1u << 4 ),
401+ eOptionVariableAnnotations = (1u << 5 ),
402402 };
403403
404404 enum HexImmediateStyle {
0 commit comments