diff options
author | Alan Modra <amodra@gmail.com> | 2003-11-22 04:46:36 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2003-11-22 04:46:36 +0000 |
commit | 9a124774374d378aa1143a2a298f836f0136ee32 (patch) | |
tree | 80a9aab4bdf3f2339c79d51f311470584cc45e20 /gas/app.c | |
parent | 67c1ffbec916d2c18096f2a285d4f5812f20bd24 (diff) | |
download | binutils-9a124774374d378aa1143a2a298f836f0136ee32.tar.gz binutils-9a124774374d378aa1143a2a298f836f0136ee32.tar.bz2 binutils-9a124774374d378aa1143a2a298f836f0136ee32.zip |
* app.c (do_scrub_chars): Revert 2003-04-23 and 2003-04-22.
Diffstat (limited to 'gas/app.c')
-rw-r--r-- | gas/app.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gas/app.c b/gas/app.c index d94766422f4..1524947dbd5 100644 --- a/gas/app.c +++ b/gas/app.c @@ -1308,13 +1308,11 @@ do_scrub_chars (int (*get) (char *, int), char *tostart, int tolen) /* Some relatively `normal' character. */ if (state == 0) { - if (IS_SYMBOL_COMPONENT (ch)) - state = 11; /* Now seeing label definition. */ + state = 11; /* Now seeing label definition. */ } else if (state == 1) { - if (IS_SYMBOL_COMPONENT (ch)) - state = 2; /* Ditto. */ + state = 2; /* Ditto. */ } else if (state == 9) { |