diff options
Diffstat (limited to '')
-rw-r--r-- | src/lj_jit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h index eafbc327..e9ab319e 100644 --- a/src/lj_jit.h +++ b/src/lj_jit.h | |||
@@ -355,8 +355,8 @@ enum { | |||
355 | /* Fold state is used to fold instructions on-the-fly. */ | 355 | /* Fold state is used to fold instructions on-the-fly. */ |
356 | typedef struct FoldState { | 356 | typedef struct FoldState { |
357 | IRIns ins; /* Currently emitted instruction. */ | 357 | IRIns ins; /* Currently emitted instruction. */ |
358 | IRIns left; /* Instruction referenced by left operand. */ | 358 | IRIns left[2]; /* Instruction referenced by left operand. */ |
359 | IRIns right; /* Instruction referenced by right operand. */ | 359 | IRIns right[2]; /* Instruction referenced by right operand. */ |
360 | } FoldState; | 360 | } FoldState; |
361 | 361 | ||
362 | /* JIT compiler state. */ | 362 | /* JIT compiler state. */ |