Fixed a bug

git-svn-id: svn://svn.cc65.org/cc65/trunk@43 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-06-10 10:24:28 +00:00
parent 4744e3602c
commit 97c9226c1e
1 changed files with 2 additions and 6 deletions

View File

@ -2602,12 +2602,8 @@ static void addsubeq (GenDesc* Gen, struct expent *lval, int k)
}
}
/* If the lhs is character sized, the operation may be later done
* with characters.
*/
if (SizeOf (lval->e_tptr) == 1) {
flags |= CF_FORCECHAR;
}
/* Adjust the rhs to the lhs */
g_typeadjust (flags, TypeOf (lval2.e_tptr));
/* Output apropriate code */
if (lval->e_flags & E_MGLOBAL) {