scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit dd6884c032347d7673c62ea7c85abef7a10a2680
parent 9ebd012d5de25051b78afcc524de5b3a100279e5
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sun, 11 Dec 2016 20:01:16 +0100

[cc1-amd64] Fix size_t type for amd64 backend

Diffstat:
Mcc1/arch/amd64-sysv/arch.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cc1/arch/amd64-sysv/arch.c b/cc1/arch/amd64-sysv/arch.c @@ -164,7 +164,7 @@ static Type types[] = { }, { /* 17 = sizettype */ .op = INT, - .letter = L_UINT32, + .letter = L_UINT64, .prop = TDEFINED | TINTEGER | TARITH | TPRINTED, .size = 8, .align = 8,