about summary refs log tree commit diff stats
path: root/src/dynarec/dynarec_next.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dynarec/dynarec_next.h')
-rw-r--r--src/dynarec/dynarec_next.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dynarec/dynarec_next.h b/src/dynarec/dynarec_next.h
index 9c3411d1..ded0800d 100644
--- a/src/dynarec/dynarec_next.h
+++ b/src/dynarec/dynarec_next.h
@@ -19,9 +19,11 @@ void la64_epilog(void) EXPORTDYN;
 void rv64_next(void) EXPORTDYN;
 void rv64_prolog(x64emu_t* emu, void* addr) EXPORTDYN;
 void rv64_epilog(void) EXPORTDYN;
+void rv64_epilog_fast(void) EXPORTDYN;
 #define native_next         rv64_next
 #define native_prolog       rv64_prolog
 #define native_epilog       rv64_epilog
+#define native_epilog_fast  rv64_epilog_fast
 #else
 #error Unsupported architecture
 #endif