mirror of
https://github.com/bellard/quickjs.git
synced 2026-05-27 19:09:36 +00:00
Merge 1df5cbe990bdf2f475f4ec27e0b2c23c8a9fe46c into d73189dd5a582c19c565774bd56fed4e72d33c99
This commit is contained in:
commit
3050eea154
@ -33680,7 +33680,7 @@ typedef struct CodeContext {
|
||||
|
||||
#define M2(op1, op2) ((op1) | ((op2) << 8))
|
||||
#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, ...)
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user