[Lldb-commits] [lldb] [lldb][bytecode] Make formatter bytecode comparisons sign-correct for Int/UInt (PR #210171)

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Fri Jul 17 02:09:26 PDT 2026


================
@@ -423,22 +458,32 @@ llvm::Error Interpret(ControlStack &control, DataStack &data, Signatures sig) {
       data.Push(~data.Pop<uint64_t>());
       continue;
     case op_eq:
-      BINOP(==);
+#define CMPOP(OP)                                                              \
----------------
Michael137 wrote:

Could this be a helper function instead of an inline macro?

https://github.com/llvm/llvm-project/pull/210171


More information about the lldb-commits mailing list