Use memory barriers in FORCE_RET / RETURN.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2273 c046a42c-6fe2-441c-8c8c-71466251a162
master
ths 2006-12-23 00:49:32 +00:00
parent 5bf089345b
commit 70ead43412
3 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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"

View File

@ -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"