diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-22 09:52:38 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-22 09:52:38 +0000 |
commit | 1b9d9ebb8a2efb780365214313625b7d717bca83 (patch) | |
tree | ac5508a5ad4d660b229947ce7b7edabc0676f4bc /target-i386/helper.h | |
parent | 1130328ecb4a247d00fa820768631d93facc832c (diff) |
cmpxchg8b fix - added cmpxchg16b
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4522 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/helper.h')
-rw-r--r-- | target-i386/helper.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target-i386/helper.h b/target-i386/helper.h index 9df198a0e4..9bbf4fc180 100644 --- a/target-i386/helper.h +++ b/target-i386/helper.h @@ -75,6 +75,9 @@ void helper_boundl(target_ulong a0, int v); void helper_rsm(void); void helper_into(int next_eip_addend); void helper_cmpxchg8b(target_ulong a0); +#ifdef TARGET_X86_64 +void helper_cmpxchg16b(target_ulong a0); +#endif void helper_single_step(void); void helper_cpuid(void); void helper_rdtsc(void); |