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
This commit is contained in:
Ian Lance Taylor 1992-09-09 18:37:27 +00:00
parent ed3f6049b4
commit b53ccaacae
3 changed files with 36 additions and 15 deletions

View File

@ -1,3 +1,10 @@
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
Tue Sep 8 17:10:58 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
* Makefile.in (LIBS): Include opcode library.

View File

@ -73,12 +73,21 @@ emulation=generic
cpu_type=${target_cpu}
# check for architecture variants
case ${target_cpu} in
sparclite) cpu_type=sparc ;;
m680[01234]0) cpu_type=m68k ;;
m683?2) cpu_type=m68k ;;
esac
gas_target=${cpu_type}
# assign object format
case ${target_os} in
aix*)
case "${target_cpu}" in
i386) obj_format=coff
target_cpu=i386aix
gas_target=i386aix
emulation=i386aix
;;
esac
@ -93,23 +102,22 @@ bsd* | sunos*)
udi)
obj_format=coffbfd
need_bfd="./../bfd/libbfd.a"
target_cpu=ebmon29k
gas_target=ebmon29k
;;
ebmon-old)
obj_format=coff
need_bfd="./../bfd/libbfd.a"
target_cpu=ebmon29k
gas_target=ebmon29k
;;
ebmon)
obj_format=coffbfd
need_bfd="./../bfd/libbfd.a"
target_cpu=ebmon29k
gas_target=ebmon29k
;;
generic) obj_format=generic ;;
xray | hms)
obj_format=coffbfd
need_bfd="./../bfd/libbfd.a"
@ -129,6 +137,13 @@ sim)
coff* | sysv*)
obj_format=coff
case ${target_cpu} in
m68*) obj_format=coffbfd
need_bfd="./../bfd/libbfd.a"
gas_target=m68kcoff
;;
esac
case ${target_vendor} in
bull) emulation=dpx2 ;;
sco) emulation=sco386 ;;
@ -150,7 +165,7 @@ OSE | ose)
obj_format=aout
emulation=sun3
;;
aout)
aout | scout)
obj_format=aout
;;
*)
@ -176,16 +191,9 @@ vax) atof=vax ;;
*) atof=ieee ;;
esac
# check for architecture variants
case ${target_cpu} in
sparclite) cpu_type=sparc ;;
m680[01234]0) cpu_type=m68k ;;
m683?2) cpu_type=m68k ;;
esac
# and target makefile frag
target_makefile_frag=config/${target_cpu}.mt
target_makefile_frag=config/${gas_target}.mt
files="config/ho-${gas_host}.h config/tc-${cpu_type}.c \
config/tc-${cpu_type}.h config/te-${emulation}.h \

View File

@ -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();