projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e0fe67a
)
bit mask conversion fix (Harald Welte
author
bellard
<bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Tue, 9 Nov 2004 22:08:48 +0000
(22:08 +0000)
committer
bellard
<bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Tue, 9 Nov 2004 22:08:48 +0000
(22:08 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1129
c046a42c
-6fe2-441c-8c8c-
71466251a162
thunk.c
patch
|
blob
|
history
diff --git
a/thunk.c
b/thunk.c
index b14fb17779132cd0e471371b8da77625c1f83206..2dbc378cd9dd8c63db30c333bcfb3acac42fed45 100644
(file)
--- a/
thunk.c
+++ b/
thunk.c
@@
-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);