aboutsummaryrefslogtreecommitdiff
path: root/tccgen.c
diff options
context:
space:
mode:
authorgrischka <grischka>2016-10-02 01:38:22 +0200
committergrischka <grischka>2016-10-02 01:39:14 +0200
commitc2ad11ac70b9ae2010eb63d5eaf77ede0168ca41 (patch)
treec81d6cfa09bfcf1d9f0b433bb5e5846582cce702 /tccgen.c
parentf350487e1e5d4606c8b1508f920b7325c3c50bc1 (diff)
downloadtinycc-c2ad11ac70b9ae2010eb63d5eaf77ede0168ca41.tar.gz
tinycc-c2ad11ac70b9ae2010eb63d5eaf77ede0168ca41.tar.bz2
tccgen: fix long long -> char/short cast
This was causing assembler bugs in a tcc compiled by itself at i386-asm.c:352 when ExprValue.v was changed to uint64_t: if (op->e.v == (int8_t)op->e.v) op->type |= OP_IM8S; A general test case: #include <stdio.h> int main(int argc, char **argv) { long long ll = 4000; int i = (char)ll; printf("%d\n", i); return 0; } Output was "4000", now "-96". Also: add "asmtest2" as asmtest with tcc compiled by itself
Diffstat (limited to 'tccgen.c')
-rw-r--r--tccgen.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tccgen.c b/tccgen.c
index 2376848..398e165 100644
--- a/tccgen.c
+++ b/tccgen.c
@@ -1948,7 +1948,10 @@ static void force_charshort_cast(int t)
vpushi((1 << bits) - 1);
gen_op('&');
} else {
- bits = 32 - bits;
+ if ((vtop->type.t & VT_BTYPE) == VT_LLONG)
+ bits = 64 - bits;
+ else
+ bits = 32 - bits;
vpushi(bits);
gen_op(TOK_SHL);
/* result must be signed or the SAR is converted to an SHL