diff options
author | Nick Clifton <nickc@redhat.com> | 2002-12-02 15:42:15 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-12-02 15:42:15 +0000 |
commit | fea179166e09be4b64b3d961537534ca02ab0e9d (patch) | |
tree | 73a99a786ac53651242b510d7479fecd73448c34 /gas/read.c | |
parent | 12aae7ea1737e2692bd6e0f6c499f06a9d9d1565 (diff) | |
download | gdb-fea179166e09be4b64b3d961537534ca02ab0e9d.zip gdb-fea179166e09be4b64b3d961537534ca02ab0e9d.tar.gz gdb-fea179166e09be4b64b3d961537534ca02ab0e9d.tar.bz2 |
Remove GASP.
Diffstat (limited to 'gas/read.c')
-rw-r--r-- | gas/read.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -862,7 +862,7 @@ read_a_source_file (name) const char *err; macro_entry *macro; - if (check_macro (s, &out, '\0', &err, ¯o)) + if (check_macro (s, &out, &err, ¯o)) { if (err != NULL) as_bad ("%s", err); @@ -1855,7 +1855,7 @@ s_irp (irpc) sb_new (&out); - err = expand_irp (irpc, 0, &s, &out, get_line_sb, '\0'); + err = expand_irp (irpc, 0, &s, &out, get_line_sb); if (err != NULL) as_bad_where (file, line, "%s", err); @@ -2296,8 +2296,7 @@ get_line_sb (line) return 1; } -/* Define a macro. This is an interface to macro.c, which is shared - between gas and gasp. */ +/* Define a macro. This is an interface to macro.c. */ void s_macro (ignore) |