]> git.sur5r.net Git - cc65/commitdiff
Improved code for bit fields.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 31 Aug 2009 15:11:32 +0000 (15:11 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 31 Aug 2009 15:11:32 +0000 (15:11 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4097 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/loadexpr.c

index 8e7f83b76177dc87a55d25750d945d96fb4750b6..fd09a4d7f7fac20aaa7a53afbe17b6f04c16e133 100644 (file)
@@ -95,8 +95,16 @@ void LoadExpr (unsigned Flags, struct ExprDesc* Expr)
 {
     if (ED_IsLVal (Expr)) {
 
-               /* Dereferenced lvalue */
-               Flags |= TypeOf (Expr->Type);
+               /* Dereferenced lvalue. If this is a bit field its type is unsigned.
+         * But if the field is completely contained in the lower byte, we will
+         * throw away the high byte anyway and may therefore load just the
+         * low byte.
+         */
+        if (ED_IsBitField (Expr) && Expr->BitOffs + Expr->BitWidth <= CHAR_BITS) {
+            Flags |= CF_CHAR | CF_UNSIGNED;
+        } else {
+            Flags |= TypeOf (Expr->Type);
+        }
        if (ED_NeedsTest (Expr)) {
            Flags |= CF_TEST;
        }