Skip to content
Merged
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
4 changes: 2 additions & 2 deletions lldb/include/lldb/Core/EmulateInstruction.h
Original file line number Diff line number Diff line change
Expand Up @@ -385,8 +385,8 @@ class EmulateInstruction : public PluginInterface {
const RegisterInfo *reg_info,
const RegisterValue &reg_value);

// Type to represent the condition of an instruction. The UINT32 value is
// reserved for the unconditional case and all other value can be used in an
// Type to represent the condition of an instruction. The UINT32_MAX value is
// reserved for the unconditional case and all other values can be used in an
// architecture dependent way.
typedef uint32_t InstructionCondition;
static const InstructionCondition UnconditionalCondition = UINT32_MAX;
Expand Down
Loading