about summary refs log tree commit diff stats
path: root/src/dynarec/arm64/arm64_printer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dynarec/arm64/arm64_printer.c')
-rw-r--r--src/dynarec/arm64/arm64_printer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dynarec/arm64/arm64_printer.c b/src/dynarec/arm64/arm64_printer.c
index 5bace025..ead54a61 100644
--- a/src/dynarec/arm64/arm64_printer.c
+++ b/src/dynarec/arm64/arm64_printer.c
@@ -1523,6 +1523,7 @@ const char* arm64_print(uint32_t opcode, uintptr_t addr)
     // DMB ISH

     if(isMask(opcode, "11010101000000110011nnnn10111111", &a)) {

         snprintf(buff, sizeof(buff), "DMB %s", (Rn==0b1011)?"ISH":"???");

+        return buff;

     }