fixed bug which caused unsigned bitfield problems
This commit is contained in:
parent
d57dfac961
commit
676fee0a3e
1 changed files with 2 additions and 2 deletions
|
@ -189,12 +189,12 @@ ch3cast(expp, oper, tp)
|
||||||
if (oldtp->tp_fund == FIELD) {
|
if (oldtp->tp_fund == FIELD) {
|
||||||
field2arith(expp);
|
field2arith(expp);
|
||||||
ch3cast(expp, oper, tp);
|
ch3cast(expp, oper, tp);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
if (tp->tp_fund == FIELD) {
|
if (tp->tp_fund == FIELD) {
|
||||||
ch3cast(expp, oper, tp->tp_up);
|
ch3cast(expp, oper, tp->tp_up);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
#endif NOBITFIELD
|
#endif NOBITFIELD
|
||||||
if (oper == CASTAB || oper == '=' || oper == RETURN) {
|
if (oper == CASTAB || oper == '=' || oper == RETURN) {
|
||||||
qual_lev = -2;
|
qual_lev = -2;
|
||||||
|
|
Loading…
Add table
Reference in a new issue