https://github.com/felipepiovezan created https://github.com/llvm/llvm-project/pull/168339
None >From 5663c3249f5d7323bced2cb8c3dbbd62561087a4 Mon Sep 17 00:00:00 2001 From: Felipe de Azevedo Piovezan <[email protected]> Date: Fri, 14 Nov 2025 11:00:03 +0000 Subject: [PATCH] [lldb][nfc] Fix comment about UINT32_MAX in UnwindAssemblyInstruction --- lldb/include/lldb/Core/EmulateInstruction.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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
