提交 70ead434 编写于 作者: T ths

Use memory barriers in FORCE_RET / RETURN.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2273 c046a42c-6fe2-441c-8c8c-71466251a162
上级 5bf08934
......@@ -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"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册