]> granicus.if.org Git - yasm/commitdiff
* nasm-eval.c (expr5, expr6): Remove unused variables.
authorPeter Johnson <peter@tortall.net>
Sun, 16 Apr 2006 19:18:33 +0000 (19:18 -0000)
committerPeter Johnson <peter@tortall.net>
Sun, 16 Apr 2006 19:18:33 +0000 (19:18 -0000)
svn path=/trunk/yasm/; revision=1493

modules/preprocs/nasm/nasm-eval.c

index 8ff121864fa89c807280bce38159bc17bff16039..b85cfbf546556596a924e37d95598f138acb94f6 100644 (file)
@@ -299,7 +299,6 @@ static yasm_expr *expr4(void)
 static yasm_expr *expr5(void)
 {
     yasm_expr *e, *f;
-    yasm_intnum *ei, *fi;
 
     e = expr6();
     if (!e)
@@ -337,10 +336,7 @@ static yasm_expr *expr5(void)
 
 static yasm_expr *expr6(void)
 {
-    long type;
     yasm_expr *e = NULL;
-    yasm_intnum *ei;
-    long label_seg, label_ofs;
 
     if (i == '-') {
        i = scan(scpriv, tokval);