diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-08-10 23:39:03 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-08-10 23:39:03 +0000 |
commit | e2222c39248e7a54ffdb8325ba7edf2e23171306 (patch) | |
tree | f910989a75bdc399d01e06c7a42389431db1258e /exec.h | |
parent | 31e8f3c894002313b8817f661f5682223aa38103 (diff) |
removed warnings
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@360 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'exec.h')
-rw-r--r-- | exec.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -32,6 +32,12 @@ #define __builtin_expect(x, n) (x) #endif +#ifdef __i386__ +#define REGPARM(n) __attribute((regparm(n))) +#else +#define REGPARM(n) +#endif + /* is_jmp field values */ #define DISAS_NEXT 0 /* next instruction can be analyzed */ #define DISAS_JUMP 1 /* only pc was modified dynamically */ |