From: Ian Lance Taylor Date: Mon, 14 Aug 1995 19:50:12 +0000 (+0000) Subject: * config/tc-m68k.c (s_opt): Reset *input_line_pointer even if we X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9bef2324a28a72bf21f5e9d16a2a9c6f703d0f9a;p=binutils-gdb.git * config/tc-m68k.c (s_opt): Reset *input_line_pointer even if we don't do anything with the option. --- diff --git a/gas/config/tc-m68k.c b/gas/config/tc-m68k.c index 6e320c0baef..f1cb10bdd2d 100644 --- a/gas/config/tc-m68k.c +++ b/gas/config/tc-m68k.c @@ -4296,6 +4296,8 @@ s_opt (ignore) *input_line_pointer = c; *o->pvar = t ? o->arg : o->notarg; } + else + *input_line_pointer = c; break; } }