From 2d0441d9628b8196f726082b03c663000a491623 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Tue, 22 May 2001 11:03:35 +0000 Subject: [PATCH] * config/tc-arc.c (md_assemble): Use is_end_of_line instead of testing for NULs. --- gas/ChangeLog | 3 +++ gas/config/tc-arc.c | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 1102202..d412c44 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,8 @@ 2001-05-22 Alan Modra + * config/tc-arc.c (md_assemble): Use is_end_of_line instead of + testing for NULs. + * symbols.c (resolve_symbol_value): Remove "finalize" param, instead use finalize_syms directly. Don't treat expressions specially with regard to finalize_syms. Update calls to self. diff --git a/gas/config/tc-arc.c b/gas/config/tc-arc.c index 730cfc6..45f54ac 100644 --- a/gas/config/tc-arc.c +++ b/gas/config/tc-arc.c @@ -631,7 +631,7 @@ md_assemble (str) /* Is there anything left to parse? We don't check for this at the top because we want to parse any trailing fake arguments in the syntax string. */ - if (*str == '\0') + if (is_end_of_line[(unsigned char) *str]) break; /* Parse the operand. */ @@ -739,7 +739,7 @@ md_assemble (str) while (isspace (*str)) ++str; - if (*str != '\0') + if (!is_end_of_line[(unsigned char) *str]) as_bad ("junk at end of line: `%s'", str); /* Is there a limm value? */ -- 2.7.4