diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-11-09 22:08:48 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-11-09 22:08:48 +0000 |
commit | 7a987127f424912cd356c443f77e4e6147b57b80 (patch) | |
tree | 015bc41d6a8564a6a54caa9db767e149f31a1cd3 /thunk.c | |
parent | e0fe67aa7240369b9ba3463df8c12c87955664c9 (diff) |
bit mask conversion fix (Harald Welte
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1129 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'thunk.c')
-rw-r--r-- | thunk.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -236,7 +236,7 @@ unsigned int host_to_target_bitmask(unsigned int alpha_mask, for(btp = trans_tbl; btp->x86_mask && btp->alpha_mask; btp++) { if((alpha_mask & btp->alpha_mask) == btp->alpha_bits) { - x86_mask |= btp->x86_mask; + x86_mask |= btp->x86_bits; } } return(x86_mask); |