Skip to content
Snippets Groups Projects
Commit 7a987127 authored by Fabrice Bellard's avatar Fabrice Bellard
Browse files

bit mask conversion fix (Harald Welte

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1129 c046a42c-6fe2-441c-8c8c-71466251a162
parent e0fe67aa
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment