]> git.sur5r.net Git - cc65/commitdiff
Fixed a bug
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 10 Oct 2003 19:33:22 +0000 (19:33 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 10 Oct 2003 19:33:22 +0000 (19:33 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2511 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/typeconv.c

index 612aa0213a995bc0c5143777a39e741bc383b862..5af7e513c435db669a241d8660540eeac273251c 100644 (file)
@@ -144,7 +144,16 @@ static int DoConversion (ExprDesc* Expr, int k, type* NewType)
                 /* If the new type is signed, sign extend the value */
                 if (!IsSignUnsigned (NewType)) {
                     if (Expr->ConstVal & (0x01UL << (NewBits-1))) {
-                        Expr->ConstVal |= ((~0L) << NewBits);
+                        /* Beware: NewBits may be 32, in which case a shift
+                         * creates undefined behaviour if a long does also
+                         * have 32 bits. So apply a somewhat complex special
+                         * handling.
+                         */
+                        unsigned long SignBits = ~0UL;
+                        SignBits <<= (NewBits / 2);
+                        NewBits -= (NewBits / 2);
+                        SignBits <<= NewBits;
+                        Expr->ConstVal |= SignBits;
                     }
                 }
             }