X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=procln.c;h=3b8c607db3c8c5ed40ffc6778da64bda7e36aa86;hp=04b8ddd6392ea64bb5ebac5c7c515cdd755d703c;hb=e968236d060c7dbae1647d5f54b27d4070b63b06;hpb=bf97c76e7e6a87b0495cb037b094b6d8b5027a40 diff --git a/procln.c b/procln.c index 04b8ddd..3b8c607 100644 --- a/procln.c +++ b/procln.c @@ -36,7 +36,6 @@ static IFENT * f_ifent; // Freelist of ifents static int disabled; // Assembly conditionally disabled int just_bss; // 1, ds.b in microprocessor mode VALUE pcloc; // Value of "PC" at beginning of line -IFENT * ifent; // Current ifent SYM * lab_sym; // Label on line (or NULL) const char extra_stuff[] = "extra (unexpected) text found after addressing mode"; @@ -265,13 +264,13 @@ as68label: switch (state) { case MN_IF: - d_if (); + d_if(); goto loop; case MN_ELSE: d_else(); goto loop; case MN_ENDIF: - d_endif (); + d_endif(); goto loop; case MN_IIF: // .iif --- immediate if if (disabled || expr(exprbuf, &eval, &eattr, &esym) != OK)