tinycc-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Tinycc-devel] .fill .rept broken by "Clean up 64bit immediate suppo


From: Sergey Korshunoff
Subject: Re: [Tinycc-devel] .fill .rept broken by "Clean up 64bit immediate support"
Date: Sun, 15 May 2016 21:53:22 +0300

> .fill problem is not fixed (on i386)

Is the following patch correct?
diff --git a/tccasm.c b/tccasm.c
index b494398..9dcab1c 100644
--- a/tccasm.c
+++ b/tccasm.c
@@ -42,7 +42,7 @@ static void asm_expr_unary(TCCState *s1, ExprValue *pe)
 {
     Sym *sym;
     int op, label;
-    long n;
+    unsigned long n;
     const char *p;

     switch(tok) {



reply via email to

[Prev in Thread] Current Thread [Next in Thread]