mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
Use memory barriers in FORCE_RET / RETURN.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2273 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
5bf089345b
commit
70ead43412
3 changed files with 5 additions and 5 deletions
|
@ -188,7 +188,7 @@ extern int printf(const char *, ...);
|
|||
#endif
|
||||
|
||||
/* force GCC to generate only one epilog at the end of the function */
|
||||
#define FORCE_RET() asm volatile ("");
|
||||
#define FORCE_RET() __asm__ __volatile__("" : : : "memory");
|
||||
|
||||
#ifndef OPPROTO
|
||||
#define OPPROTO
|
||||
|
|
|
@ -45,9 +45,9 @@ register host_uint_t T2 asm(AREG3);
|
|||
#endif
|
||||
|
||||
#if defined (DEBUG_OP)
|
||||
#define RETURN() __asm__ __volatile__("nop");
|
||||
# define RETURN() __asm__ __volatile__("nop" : : : "memory");
|
||||
#else
|
||||
#define RETURN() __asm__ __volatile__("");
|
||||
# define RETURN() __asm__ __volatile__("" : : : "memory");
|
||||
#endif
|
||||
|
||||
#include "cpu.h"
|
||||
|
|
|
@ -38,9 +38,9 @@ register uint32_t T2 asm(AREG3);
|
|||
#define FT2 (env->ft2)
|
||||
|
||||
#if defined (DEBUG_OP)
|
||||
#define RETURN() __asm__ __volatile__("nop");
|
||||
# define RETURN() __asm__ __volatile__("nop" : : : "memory");
|
||||
#else
|
||||
#define RETURN() __asm__ __volatile__("");
|
||||
# define RETURN() __asm__ __volatile__("" : : : "memory");
|
||||
#endif
|
||||
|
||||
#include "cpu.h"
|
||||
|
|
Loading…
Reference in a new issue