diff options
author | Mike Pall <mike> | 2017-03-08 21:59:14 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2017-03-08 21:59:14 +0100 |
commit | a9740d9edbe943c9a47a9b011657d0d8413714e4 (patch) | |
tree | 360890df0827d1013496cb9674332a317e3bd92b /dynasm | |
parent | 892d370edd36ef748f3b6095a80f77798fac9bee (diff) | |
download | luajit-a9740d9edbe943c9a47a9b011657d0d8413714e4.tar.gz luajit-a9740d9edbe943c9a47a9b011657d0d8413714e4.tar.bz2 luajit-a9740d9edbe943c9a47a9b011657d0d8413714e4.zip |
DynASM: Fix warning.
Diffstat (limited to 'dynasm')
-rw-r--r-- | dynasm/dasm_x86.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dynasm/dasm_x86.h b/dynasm/dasm_x86.h index c71bd3cf..90dc5d15 100644 --- a/dynasm/dasm_x86.h +++ b/dynasm/dasm_x86.h | |||
@@ -204,7 +204,8 @@ void dasm_put(Dst_DECL, int start, ...) | |||
204 | case DASM_SPACE: p++; ofs += n; break; | 204 | case DASM_SPACE: p++; ofs += n; break; |
205 | case DASM_SETLABEL: b[pos-2] = -0x40000000; break; /* Neg. label ofs. */ | 205 | case DASM_SETLABEL: b[pos-2] = -0x40000000; break; /* Neg. label ofs. */ |
206 | case DASM_VREG: CK((n&-8) == 0 && (n != 4 || (*p&1) == 0), RANGE_VREG); | 206 | case DASM_VREG: CK((n&-8) == 0 && (n != 4 || (*p&1) == 0), RANGE_VREG); |
207 | if (*p++ == 1 && *p == DASM_DISP) mrm = n; continue; | 207 | if (*p++ == 1 && *p == DASM_DISP) mrm = n; |
208 | continue; | ||
208 | } | 209 | } |
209 | mrm = 4; | 210 | mrm = 4; |
210 | } else { | 211 | } else { |