commit bad28ddd7eb164eac03667f2fc97197c8abff48e parent cb34e8771eb6d1af7b6cf0fcc181c96f4ab66fb0 Author: Roberto E. Vargas Caballero <roberto.vargas@igrid-td.com> Date: Mon, 4 Apr 2016 19:09:58 +0200 [cc2-qbe] Fix 8 byte data size The format specifier is 'l' not 'q' Diffstat:
M | cc2/arch/qbe/code.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cc2/arch/qbe/code.c b/cc2/arch/qbe/code.c @@ -99,7 +99,7 @@ size2asm(Type *tp) s = "w\t"; break; case 8: - s = "q\t"; + s = "l\t"; break; default: abort();