Merge 1df5cbe990bdf2f475f4ec27e0b2c23c8a9fe46c into 20d2b404af65edc5d66ee6f11a59f930ea3d1b88

This commit is contained in:
pitust 2025-08-29 18:05:41 +08:00 committed by GitHub
commit 0ce3050772
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32575,7 +32575,7 @@ typedef struct CodeContext {
#define M2(op1, op2) ((op1) | ((op2) << 8)) #define M2(op1, op2) ((op1) | ((op2) << 8))
#define M3(op1, op2, op3) ((op1) | ((op2) << 8) | ((op3) << 16)) #define M3(op1, op2, op3) ((op1) | ((op2) << 8) | ((op3) << 16))
#define M4(op1, op2, op3, op4) ((op1) | ((op2) << 8) | ((op3) << 16) | ((op4) << 24)) #define M4(op1, op2, op3, op4) ((op1) | ((op2) << 8) | ((op3) << 16) | (((uint32_t)op4) << 24))
static BOOL code_match(CodeContext *s, int pos, ...) static BOOL code_match(CodeContext *s, int pos, ...)
{ {