about summary refs log tree commit diff stats
path: root/src/emu/x64run64.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/x64run64.c')
-rw-r--r--src/emu/x64run64.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/x64run64.c b/src/emu/x64run64.c
index 3e8bdbff..ae4dbe63 100644
--- a/src/emu/x64run64.c
+++ b/src/emu/x64run64.c
@@ -26,9 +26,9 @@ int Run64(x64emu_t *emu, rex_t rex)
 {

     uint8_t opcode;

     uint8_t nextop;

-    uint8_t tmp8u;

-    int16_t tmp16s;

-    uint16_t tmp16u;

+    uint8_t tmp8u;   (void)tmp8u;

+    int16_t tmp16s;  (void)tmp16s;

+    uint16_t tmp16u; (void)tmp16u;

     int32_t tmp32s;

     uint32_t tmp32u;

     uint64_t tmp64u;

@@ -318,4 +318,4 @@ int Run64(x64emu_t *emu, rex_t rex)
             return 1;

     }

     return 0;

-}
\ No newline at end of file
+}