scc

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

commit 9ebd012d5de25051b78afcc524de5b3a100279e5
parent 3acfbc12d1cee43ced3f018acc8b7a0a72b4ec4f
Author: Quentin Carbonneaux <quentin@c9x.me>
Date:   Sun, 11 Dec 2016 10:11:21 -0500

[cc1] Fix size_t type for qbe backend

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

diff --git a/cc1/arch/qbe/arch.c b/cc1/arch/qbe/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,