diff options
author | Ian Lance Taylor <ian@airs.com> | 1992-09-09 18:37:27 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1992-09-09 18:37:27 +0000 |
commit | b53ccaacae4537af9cdc9b037f49f16467f84ea4 (patch) | |
tree | 2b783b4c79f7e3d64959781a642086b5263f2abc /gas/read.c | |
parent | ed3f6049b487b585b9ebaf6f0847c9df271719ec (diff) | |
download | gdb-b53ccaacae4537af9cdc9b037f49f16467f84ea4.zip gdb-b53ccaacae4537af9cdc9b037f49f16467f84ea4.tar.gz gdb-b53ccaacae4537af9cdc9b037f49f16467f84ea4.tar.bz2 |
Wed Sep 9 11:06:25 1992 Ian Lance Taylor (ian@cygnus.com)
* Makefile.in: use gas_target instead of modifying target_cpu.
From Steve Chamberlain:
Makefile.in: Handle m68*-*-coff*.
read.c, read.h: add mult argument to s_space
Diffstat (limited to 'gas/read.c')
-rw-r--r-- | gas/read.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1256,7 +1256,9 @@ void s_set() { demand_empty_rest_of_line(); } /* s_set() */ -void s_space() { +void s_space(mult) +int mult; +{ long temp_repeat; register long temp_fill; register char *p; @@ -1268,6 +1270,10 @@ void s_space() { input_line_pointer --; /* Backup over what was not a ','. */ temp_fill = 0; } + if(mult) + { + temp_fill *= mult; + } if (temp_repeat <= 0) { as_warn("Repeat < 0, .space ignored"); ignore_rest_of_line(); |