Author: Felipe de Azevedo Piovezan Date: 2025-11-17T11:58:27Z New Revision: c2ba81c780c2eba700db0b6bc7a58b4c3de8ba76
URL: https://github.com/llvm/llvm-project/commit/c2ba81c780c2eba700db0b6bc7a58b4c3de8ba76 DIFF: https://github.com/llvm/llvm-project/commit/c2ba81c780c2eba700db0b6bc7a58b4c3de8ba76.diff LOG: [lldb][nfc] Fix comment about UINT32_MAX in UnwindAssemblyInstruction (#168339) Added: Modified: lldb/include/lldb/Core/EmulateInstruction.h Removed: ################################################################################ diff --git a/lldb/include/lldb/Core/EmulateInstruction.h b/lldb/include/lldb/Core/EmulateInstruction.h index a9fd4543cbbcb..ff1386cce570b 100644 --- a/lldb/include/lldb/Core/EmulateInstruction.h +++ b/lldb/include/lldb/Core/EmulateInstruction.h @@ -385,8 +385,8 @@ class EmulateInstruction : public PluginInterface { const RegisterInfo *reg_info, const RegisterValue ®_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; _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
