mirror of
https://github.com/bellard/quickjs.git
synced 2025-09-27 05:38:45 +03:00
Compare commits
2 Commits
a56062ca3d
...
0ce3050772
Author | SHA1 | Date | |
---|---|---|---|
|
0ce3050772 | ||
|
1df5cbe990 |
@ -32575,7 +32575,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…
x
Reference in New Issue
Block a user