diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-05-19 10:10:36 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-05-19 10:10:36 +0200 |
| commit | 152a8a4666f253d367dc664bfd329edf53b3e5b3 (patch) | |
| tree | 8f8c88dcd6269c68c7e2ac1bef98c6e91a31708d /src | |
| parent | 86669beb7a19a4b66ac8dedca14bbac4995c01bf (diff) | |
| download | box64-152a8a4666f253d367dc664bfd329edf53b3e5b3.tar.gz box64-152a8a4666f253d367dc664bfd329edf53b3e5b3.zip | |
Removed useless GetFS in F0 prefix interpretor
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/x64run66f0.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/emu/x64run66f0.c b/src/emu/x64run66f0.c index e81c380f..cdfecd06 100644 --- a/src/emu/x64run66f0.c +++ b/src/emu/x64run66f0.c @@ -27,11 +27,10 @@ int Run66F0(x64emu_t *emu, rex_t rex) { uint8_t opcode; uint8_t nextop; - uint16_t tmp16u, tmp16u2; + uint16_t tmp16u2; int64_t tmp64s; uint64_t tmp64u, tmp64u2; - reg64_t *oped, *opgd; - uintptr_t tlsdata = GetFSBaseEmu(emu); + reg64_t *oped; opcode = F8; // REX prefix before the F0 are ignored |