diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-01-10 23:20:04 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-01-10 23:20:04 +0000 |
commit | 977d5710e6f9628402ea28b70a4ea36eec7fea3e (patch) | |
tree | 311859dbb55ae9b1151fc038b1c6af39e3e835c8 /target-i386 | |
parent | 34444131adc4c88905986b2343b34fb482b9803a (diff) |
DATA_MASK fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1213 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/ops_template.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/ops_template.h b/target-i386/ops_template.h index 044968a2ca..35d5b54121 100644 --- a/target-i386/ops_template.h +++ b/target-i386/ops_template.h @@ -46,7 +46,7 @@ #define SUFFIX q #define DATA_TYPE uint64_t #define DATA_STYPE int64_t -#define DATA_MASK 0xffffffffffffffff +#define DATA_MASK 0xffffffffffffffffULL #else #error unhandled operand size #endif |