Remove v850e sanitization

This commit is contained in:
Nick Clifton 1999-02-01 11:21:32 +00:00
parent 0835d7d74a
commit a21a12e39e
28 changed files with 293 additions and 679 deletions

View File

@ -136,34 +136,6 @@ Things-to-lose:
Do-last:
v850e_files="readelf.c"
if ( echo $* | grep keep\-v850e > /dev/null ) ; then
for i in $v850e_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping v850e stuff in $i
fi
fi
done
else
for i in $v850e_files ; do
if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"v850e\" from $i...
fi
cp $i new
sed '/start\-sanitize\-v850e/,/end\-sanitize\-v850e/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
m32rx_files="readelf.c"
if ( echo $* | grep keep\-m32rx > /dev/null ) ; then
for i in $m32rx_files ; do

View File

@ -772,6 +772,24 @@ get_machine_flags (e_flags, e_machine)
strcat (buf, ", relocatable-lib");
break;
case EM_CYGNUS_V850:
switch (e_flags & EF_V850_ARCH)
{
case E_V850E_ARCH:
strcat (buf, ", v850e");
break;
case E_V850EA_ARCH:
strcat (buf, ", v850ea");
break;
case E_V850_ARCH:
strcat (buf, ", v850");
break;
default:
strcat (buf, ", unknown v850 architecture variant");
break;
}
break;
case EM_CYGNUS_M32R:
if ((e_flags & EF_M32R_ARCH) == E_M32R_ARCH)
strcat (buf, ", m32r");

View File

@ -137,34 +137,6 @@ Things-to-lose:
Do-last:
v850_files="ChangeLog ChangeLog-9697 configure.in configure"
if ( echo $* | grep keep\-v850e > /dev/null ) ; then
for i in $v850_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping v850e stuff in $i
fi
fi
done
else
for i in $v850_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"v850e\" from $i...
fi
cp $i new
sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
r5900_files="ChangeLog ChangeLog-9697 configure configure.in"
if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
for i in $r5900_files ; do

View File

@ -1207,10 +1207,9 @@ Tue Jun 23 17:47:31 1998 Jim Wilson <wilson@cygnus.com>
char with code that explicitly sign-extends.
Tue Jun 23 13:54:57 1998 Nick Clifton <nickc@cygnus.com>
start-sanitize-v850e
* config/tc-v850.c (md_begin): Restore text section as the current
section after creating call table sections.
end-sanitize-v850e
* config/obj-coff.h (SYM_AUXINFO): New macro to conceal ugly
code.
@ -1469,13 +1468,11 @@ Mon Jun 8 12:20:30 1998 Alan Modra <alan@spri.levels.unisa.edu.au>
(md_assemble): Allow immediate operands without suffix or
other reg operand to default in size to the current code size.
start-sanitize-v850e
Mon Jun 8 09:45:00 1998 Catherine Moore <clm@cygnus.com>
* config/tc-v850.c (md_begin): Restore creation of
.call_table_text and .call_table_data sections.
end-sanitize-v850e
Sat Jun 6 00:02:41 1998 Nick Clifton <nickc@cygnus.com>
* config/tc-d30v.c (md_assemble): Set execution type to unknown
@ -3045,11 +3042,10 @@ Fri Feb 6 16:08:30 1998 Jeffrey A Law (law@cygnus.com)
bit size of an address instead of looking at the isa level.
(macro, macro2, s_cprestore, s_cpadd): Likewise.
start-sanitize-v850e
Fri Feb 6 14:44:34 1998 Nick Clifton <nickc@cygnus.com>
* config/tc-v850.c (md_parse_option): Add -mv850any command line option.
end-sanitize-v850e
Thu Feb 5 12:39:08 1998 Ian Lance Taylor <ian@cygnus.com>
* ehopt.c: New file.

View File

@ -708,7 +708,6 @@ Wed Sep 17 16:54:20 1997 Nick Clifton <nickc@cygnus.com>
* config/tc-v850.c (v850_reloc_prefix): Recoded to use CHECK_ ()
macro.
(handle_tdaoff, handle_zdaoff, handle_sdaoff): New functions.
start-sanitize-v850e
* config/tc-v850.c (md_assemble): Corrected typo.
* config/tc-v850.c Add new sections: call_table_data and
@ -717,7 +716,6 @@ start-sanitize-v850e
(handle_ctoff): New Function.
* doc/c-v850.texi (V850 Opcodes): Document call table relocations.
end-sanitize-v850e
Tue Sep 16 14:18:22 1997 Nick Clifton <nickc@cygnus.com>
@ -737,10 +735,6 @@ Mon Sep 15 18:33:06 1997 Nick Clifton <nickc@cygnus.com>
processor.
* config/tc-v850.h (TARGET_PROCESSOR): New constant.
start-sanitize-v850e
(TARGET_PROCESSOR): New constant.
(TARGET_PROCESSOR): New constant.
end-sanitize-v850e
start-sanitize-tx19
Mon Sep 15 17:26:46 1997 Gavin Koch <gavin@cygnus.com>
@ -804,9 +798,7 @@ Mon Sep 15 11:28:04 1997 Ken Raeburn <raeburn@cygnus.com>
Wed Sep 10 10:07:08 1997 Nick Clifton <nickc@cygnus.com>
start-sanitize-v850e
* config/tc-v850.c (md_assemble): Corrected spelling mistake.
end-sanitize-v850e
* configure.in (emulations): Add v850 emulation.
Tue Sep 9 17:14:33 1997 Doug Evans <dje@canuck.cygnus.com>
@ -825,21 +817,17 @@ Tue Sep 9 10:19:37 1997 Nick Clifton <nickc@cygnus.com>
* doc/c-v850.texi (V850 Opcodes): Document hi0() reloc prefix.
Correct description of hi() reloc prefix.
start-sanitize-v850e
* doc/c-v850.texi (V850 Opcodes): Document new reloc prefix.
* config/tc-v850.c (v850_reloc_prefix): Add hilo() reloc prefix.
* config/tc-v850.c (md_assemble): Add support for BFD_RELOC_32.
end-sanitize-v850e
* doc/c-v850.texi: Document new pseudo ops and command line
options.
* config/tc-v850.c (set_machine): New function.
* config/tc-v850.c (.v850): New pseudo op.
start-sanitize-v850e
* config/tc-v850.c (.v850e): New pseudo op.
* config/tc-v850.c (.v850ea): New pseudo op.
end-sanitize-v850e
Mon Sep 8 23:08:04 1997 Ian Lance Taylor <ian@cygnus.com>
@ -978,10 +966,8 @@ Mon Aug 25 11:21:48 1997 Nick Clifton <nickc@cygnus.com>
* config/tc-v850.c (md_assemble): Restore input_line_pointer upon
exit.
start-sanitize-v850e
* config/tc-v850.c (parse_register_list): Support constant
expressions as register lists.
end-sanitize-v850e
Mon Aug 25 10:19:34 1997 Nick Clifton <nickc@cygnus.com>
@ -1072,7 +1058,6 @@ Mon Aug 18 11:26:36 1997 Nick Clifton <nickc@cygnus.com>
* config/tc-v850.c (md_apply_fix3): Add support for new 16 bit PC
relative reloc.
start-sanitize-v850e
Mon Aug 18 11:24:21 1997 Nick Clifton <nickc@cygnus.com>
* config/tc-v850.c: Remove support_v850e flag and command line
@ -1090,7 +1075,6 @@ Mon Aug 18 11:24:21 1997 Nick Clifton <nickc@cygnus.com>
* configure.in (emulations): Add support for v850ea target
* configure (emulations): Add support for v850ea target
end-sanitize-v850e
Fri Aug 15 14:00:13 1997 Ian Lance Taylor <ian@cygnus.com>
@ -1124,13 +1108,11 @@ Fri Aug 15 14:00:13 1997 Ian Lance Taylor <ian@cygnus.com>
Wed Aug 13 18:58:56 1997 Nick Clifton <nickc@cygnus.com>
start-sanitize-v850e
* config/tc-v850.c (md_assemble, md_show_usage, md_parse_option):
Add support for v850ea instructions.
* config/tc-v850.c (md_assemble, md_show_usage, md_parse_option):
Add support for v850e instructions.
end-sanitize-v850e
* config/tc-v850.c (md_assemble): Fix error recovery to reload
text of entire opcode.

View File

@ -323,34 +323,6 @@ else
done
fi
v850e_files="tc-v850.c tc-v850.h"
if ( echo $* | grep keep\-v850e > /dev/null ) ; then
for i in $v850e_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping v850e stuff in $i
fi
fi
done
else
for i in $v850e_files ; do
if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"v850e\" from $i...
fi
cp $i new
sed '/start\-sanitize\-v850e/,/end\-sanitize\-v850e/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
m32rx_files="tc-m32r.c tc-m32r.h"
if ( echo $* | grep keep\-m32rx > /dev/null ) ; then
for i in $m32rx_files ; do

386
gas/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -62,6 +62,8 @@ fi
emulations=""
using_cgen=no
for this_target in $target $canon_targets ; do
changequote(,)dnl
@ -145,15 +147,14 @@ changequote([,])dnl
dvp-*-*) fmt=elf bfd_gas=yes install_tooldir= ;;
# end-sanitize-sky
# start-sanitize-fr30
fr30-*-*) fmt=elf bfd_gas=yes ;;
# end-sanitize-fr30
hppa-*-*elf*) fmt=elf em=hppa ;;
hppa-*-lites*) fmt=elf em=hppa ;;
hppa-*-osf*) fmt=som em=hppa ;;
hppa-*-rtems*) fmt=elf em=hppa ;;
hppa-*-hpux*) fmt=som em=hppa ;;
hppa-*-mpeix*) fmt=som em=hppa ;;
hppa-*-bsd*) fmt=som em=hppa ;;
hppa-*-hiux*) fmt=som em=hppa ;;
@ -306,11 +307,9 @@ dnl end-sanitize-beos
# end-sanitize-tic80
v850-*-*) fmt=elf bfd_gas=yes ;;
# start-sanitize-v850e
v850e-*-*) fmt=elf bfd_gas=yes ;;
v850ea-*-*) fmt=elf bfd_gas=yes ;;
# end-sanitize-v850e
vax-*-bsd* | vax-*-ultrix*)
fmt=aout ;;
vax-*-vms) fmt=vms ;;
@ -381,26 +380,15 @@ dnl end-sanitize-beos
esac
case ${cpu_type} in
m32r)
fr30 | m32r)
case "x${extra_objects}" in
*cgen.o*) ;;
*) extra_objects="$extra_objects cgen.o"
AC_DEFINE(USING_CGEN)
using_cgen=yes
;;
esac
;;
# start-sanitize-fr30
fr30)
case "x${extra_objects}" in
*cgen.o*) ;;
*) extra_objects="$extra_objects cgen.o"
AC_DEFINE(USING_CGEN)
;;
esac
;;
# end-sanitize-fr30
m68k)
case ${extra_objects} in
*m68k-parse.o*) ;;
@ -492,14 +480,13 @@ esac
# Unfortunately the cpu in cpu-opc.h file isn't always $(TARGET_CPU).
cgen_cpu_prefix=""
case "x${extra_objects}" in
*cgen.o*)
case ${target_cpu} in
*) cgen_cpu_prefix=${target_cpu} ;;
esac
;;
esac
AC_SUBST(cgen_cpu_prefix)
if test "x$using_cgen" = xyes ; then
case ${target_cpu} in
*) cgen_cpu_prefix=${target_cpu} ;;
esac
AC_SUBST(cgen_cpu_prefix)
AC_DEFINE(USING_CGEN)
fi
dnl
dnl Make sure the desired support files exist.
@ -747,14 +734,12 @@ AC_OUTPUT(Makefile doc/Makefile .gdbinit:gdbinit.in po/Makefile.in:po/Make-in,
echo '#include "obj-'"${obj_format}"'.h"' > obj-format.h
echo '#include "te-'"${te_file}"'.h"' > targ-env.h
echo '#include "itbl-'"${target_cpu_type}"'.h"' > itbl-cpu.h
case ${target_cpu_type} in
m32r) echo '#include "opcodes/'"${target_cpu_type}"'-opc.h"' > cgen-opc.h ;;
# start-sanitize-fr30
fr30) echo '#include "opcodes/'"${target_cpu_type}"'-opc.h"' > cgen-opc.h ;;
# end-sanitize-fr30
esac
if test "x$cgen_cpu_prefix" != x ; then
echo '#include "opcodes/'"${cgen_cpu_prefix}"'-opc.h"' > cgen-opc.h
fi
sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile],
[target_cpu_type=${target_cpu_type}
cgen_cpu_prefix=${cgen_cpu_prefix}
obj_format=${obj_format}
te_file=${te_file}])

View File

@ -60,34 +60,6 @@ Things-to-lose:
Do-last:
v850e_files="c-v850.texi"
if ( echo $* | grep keep\-v850e > /dev/null ) ; then
for i in $v850e_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping v850e stuff in $i
fi
fi
done
else
for i in $v850e_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"v850e\" from $i...
fi
cp $i new
sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
m32rx_files="c-m32r.texi as.texinfo"
if ( echo $* | grep keep\-m32rx > /dev/null ) ; then
for i in $m32rx_files ; do

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1998-11-04 16:53-0500\n"
"POT-Creation-Date: 1998-11-12 13:28-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -1261,7 +1261,7 @@ msgstr ""
msgid "expression too complex for %%st"
msgstr ""
#: config/tc-arc.c:1324 config/tc-arm.c:2915 config/tc-d10v.c:1442
#: config/tc-arc.c:1324 config/tc-arm.c:2915 config/tc-d10v.c:1448
#: config/tc-d30v.c:1792 config/tc-mips.c:3341 config/tc-mips.c:4297
#: config/tc-mips.c:5082 config/tc-mips.c:5628 config/tc-ppc.c:4668
#: config/tc-v850.c:2402
@ -1918,12 +1918,12 @@ msgstr ""
msgid "reloc %d not supported by object file format"
msgstr ""
#: config/tc-d10v.c:1492
#: config/tc-d10v.c:1498
#, c-format
msgid "line %d: rep or repi must include at least 4 instructions"
msgstr ""
#: config/tc-d10v.c:1505 config/tc-d30v.c:1909
#: config/tc-d10v.c:1517 config/tc-d30v.c:1909
#, c-format
msgid "line %d: unknown relocation type: 0x%x"
msgstr ""
@ -1943,7 +1943,7 @@ msgid ""
"-N\t\t\tWarn about NOPs inserted after word multiplies.\n"
"-c Warn about symbols whoes names match register "
"names.\n"
"-C Opposite of -C. -c is the default.\n"
"-C Opposite of -C. -C is the default.\n"
msgstr ""
#: config/tc-d30v.c:450
@ -5337,7 +5337,6 @@ msgstr ""
msgid " -mv850 The code is targeted at the v850\n"
msgstr ""
#. start-sanitize-v850e
#: config/tc-v850.c:1218
msgid " -mv850e The code is targeted at the v850e\n"
msgstr ""

View File

@ -52,34 +52,6 @@ Things-to-lose:
Do-last:
v850_files="ChangeLog common.h v850.h"
if ( echo $* | grep keep\-v850e > /dev/null ) ; then
for i in $v850_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping v850e stuff in $i
fi
fi
done
else
for i in $v850_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"v850e\" from $i...
fi
cp $i new
sed '/start\-sanitize\-v850e/,/end\-sanitize\-v850e/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
m32rx_files="ChangeLog m32r.h"
if ( echo $* | grep keep\-m32rx > /dev/null ) ; then
for i in $m32rx_files ; do

View File

@ -329,12 +329,10 @@ Tue Sep 30 13:26:58 1997 Doug Evans <dje@canuck.cygnus.com>
(R_SPARC_{H44,M44,L44,REGISTER}): New relocations.
(ELF64_R_TYPE_{DATA,ID,INFO}): New macros.
start-sanitize-v850e
Wed Sep 17 16:41:42 1997 Nick Clifton <nickc@cygnus.com>
* v850.h: Add R_V850_CALLT_6_7_OFFSET and R_V850_CALLT_16_16_OFFSET.
end-sanitize-v850e
Tue Sep 16 14:16:17 1997 Nick Clifton <nickc@cygnus.com>
* v850.h (reloc_type): Add R_V850_TDA_16_16_OFFSET.
@ -349,19 +347,14 @@ Wed Sep 3 11:25:57 1997 Nick Clifton <nickc@cygnus.com>
Tue Sep 2 17:41:05 1997 Nick Clifton <nickc@cygnus.com>
start-sanitize-v850e
* common.h: Remove magic number for V850E.
* common.h: Remove magic number for V850EA.
end-sanitize-v850e
* v850.h: Add new flags for e_flags field in elf header.
start-sanitize-v850e
Mon Aug 25 16:06:47 1997 Nick Clifton <nickc@cygnus.com>
* common.h (EM_CYGNUS_V850E): backend magic number for v850e.
* common.h (EM_CYGNUS_V850EA): backend magic number for v850ea.
end-sanitize-v850e
Mon Aug 18 11:05:23 1997 Nick Clifton <nickc@cygnus.com>

View File

@ -73,35 +73,6 @@ Things-to-lose:
Do-last:
v850e_files="ChangeLog v850.h"
if ( echo $* | grep keep\-v850e > /dev/null ) ; then
for i in $v850e_files ; do
if test -f $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping v850e stuff in $i
fi
fi
done
else
for i in $v850e_files ; do
if test -f $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"v850e\" from $i...
fi
cp $i new
sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
tx49_files="ChangeLog mips.h"
if ( echo $* | grep keep\-tx49 > /dev/null ) ; then

View File

@ -603,10 +603,8 @@ Mon Sep 15 18:28:37 1997 Nick Clifton <nickc@cygnus.com>
* v850.h (struct v850_opcode): Add processors field.
(PROCESSOR_V850, PROCESSOR_ALL): New bit constants.
start-sanitize-v850e
(PROCESSOR_V850E, PROCESSOR_NOT_V850): New bit constants.
(PROCESSOR_V850EA): New bit constants.
end-sanitize-v850e
Mon Sep 15 11:29:43 1997 Ken Raeburn <raeburn@cygnus.com>
@ -664,11 +662,8 @@ Wed Aug 13 18:45:48 1997 Nick Clifton <nickc@cygnus.com>
* v850.h (struct v850_opcode): Add flags field.
(struct v850_operand): Extend meaning of 'bits' and 'shift'
fields.
start-sanitize-v850e
(V850E_INSTRUCTION, V850EA_INSTRUCTION): New flags.
(V850E_PUSH_POP, V850E_IMMEDIATE16, V850E_IMMEDIATE32): New flags.
end-sanitize-v850e
Fri Aug 8 16:58:42 1997 Doug Evans <dje@canuck.cygnus.com>

View File

@ -117,34 +117,6 @@ Things-to-lose:
Do-last:
v850_files="ChangeLog configure.tgt Makefile.am Makefile.in"
if ( echo $* | grep keep\-v850e > /dev/null ) ; then
for i in $v850_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping v850e stuff in $i
fi
fi
done
else
for i in $v850_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"v850e\" from $i...
fi
cp $i new
sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
tx49_files="ChangeLog configure.tgt"
if ( echo $* | grep keep\-tx49 > /dev/null ) ; then
for i in $tx49_files ; do

View File

@ -1335,13 +1335,11 @@ Wed Sep 17 16:45:34 1997 Nick Clifton <nickc@cygnus.com>
* Makefile.am, Makefile.in: Add rule for ev850.c
* configure.tgt (targ_extra_emuls): Add v850 target.
start-sanitize-v850e
Wed Sep 17 16:43:39 1997 Nick Clifton <nickc@cygnus.com>
* emulparams/v850.sh (CALL_TABLE_START_ADDR): New entry.
* scripttempl/v850.sc: Add call table data area
end-sanitize-v850e
Mon Sep 15 11:29:13 1997 Ken Raeburn <raeburn@cygnus.com>
Merge change from Martin Hunt:
@ -1390,7 +1388,6 @@ Wed Aug 20 11:14:13 1997 Ian Lance Taylor <ian@cygnus.com>
* ld.texinfo (Section Definition): Clarify use of whitespace.
(Section Placement): Likewise.
start-sanitize-v850e
Mon Aug 18 11:12:03 1997 Nick Clifton <nickc@cygnus.com>
* configure.tgt (targ_extra_emuls): Add support for v850e target.
@ -1398,7 +1395,6 @@ Mon Aug 18 11:12:03 1997 Nick Clifton <nickc@cygnus.com>
Mon Aug 18 11:12:03 1997 Nick Clifton <nickc@cygnus.com>
* configure.tgt (targ_extra_emuls): Add support for v850e target.
end-sanitize-v850e
Sat Aug 9 00:42:27 1997 Ian Lance Taylor <ian@cygnus.com>

View File

@ -237,10 +237,8 @@ tic30-*-*coff*) targ_emul=tic30coff ;;
tic80-*-*) targ_emul=tic80coff ;;
# end-sanitize-tic80
v850-*-*) targ_emul=v850 ;;
# start-sanitize-v850e
v850e-*-*) targ_emul=v850 ;;
v850ea-*-*) targ_emul=v850 ;;
# end-sanitize-v850e
w65-*-*) targ_emul=w65 ;;
fr30-*-*) targ_emul=elf32fr30 ;;
*-*-aout) targ_emul=${target_cpu}-${target_vendor} ;;

View File

@ -154,40 +154,10 @@ z8002.sh
Things-to-lose:
# The lines between the "Do-last:" line and the end of the file
# are executed as a /bin/sh shell script after everything else is
# done.
Do-last:
v850e_files="v850.sh"
if ( echo $* | grep keep\-v850e > /dev/null ) ; then
for i in $v850e_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping v850e stuff in $i
fi
fi
done
else
for i in $v850e_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"v850e\" from $i...
fi
cp $i new
sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
# eof

View File

@ -98,32 +98,5 @@ Things-to-lose:
Do-last:
v850_files="v850.sc"
if ( echo $* | grep keep\-v850e > /dev/null ) ; then
for i in $v850_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping v850e stuff in $i
fi
fi
done
else
for i in $v850_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"v850e\" from $i...
fi
cp $i new
sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
# eof

View File

@ -175,35 +175,6 @@ else
done
fi
v850e_files="ChangeLog Makefile.in Makefile.am configure.in configure disassemble.c v850-opc.c v850-dis.c"
if ( echo $* | grep keep\-v850e > /dev/null ) ; then
for i in $v850e_files ; do
if test -f $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping v850e stuff in $i
fi
fi
done
else
for i in $v850e_files ; do
if test -f $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"v850e\" from $i...
fi
cp $i new
sed '/start\-sanitize\-v850e/,/end\-sanitize\-v850e/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
r5900_files="ChangeLog mips-opc.c mips-dis.c Makefile.am Makefile.in"
if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
for i in $r5900_files ; do

View File

@ -2175,13 +2175,11 @@ Fri Oct 3 17:26:54 1997 Ian Lance Taylor <ian@cygnus.com>
values, rather than assuming that short is 16 bits.
(OP_sI, OP_J, OP_DIR): Likewise.
start-sanitize-v850e
Thu Oct 2 13:36:45 1997 Nick Clifton <nickc@cygnus.com>
* v850-dis.c (v850_sreg_names): Use symbolic names for higher
system registers.
end-sanitize-v850e
Wed Oct 1 16:58:54 1997 Nick Clifton <nickc@cygnus.com>
* v850-opc.c: Fix typo in comment.
@ -2213,12 +2211,10 @@ Wed Sep 24 11:29:35 1997 Ian Lance Taylor <ian@cygnus.com>
* aclocal.m4: Rebuild with new libtool.
* configure: Rebuild.
start-sanitize-v850e
Fri Sep 19 11:45:49 1997 Andrew Cagney <cagney@b1.cygnus.com>
* v850-opc.c ("cmov"): Order reg param r1, r2 not r2, r2.
end-sanitize-v850e
Thu Sep 18 11:21:43 1997 Doug Evans <dje@canuck.cygnus.com>
* sparc-opc.c (sparclet_cpreg_table): Add %ccsr2, %cccrr, %ccrstr.
@ -2297,12 +2293,10 @@ Wed Aug 27 21:42:39 1997 Ken Raeburn <raeburn@cygnus.com>
* d30v-opc.c (SHORT_M2, LONG_M2): Two new forms.
start-sanitize-v850e
Fri Sep 12 11:43:54 1997 Nick Clifton <nickc@cygnus.com>
* v850-dis.c (disassemble): Improved display of register lists.
end-sanitize-v850e
Thu Sep 11 17:35:10 1997 Doug Evans <dje@canuck.cygnus.com>
* sparc-opc.c (sparc_opcodes): Fix assembler args to
@ -2352,11 +2346,9 @@ Fri Aug 22 10:35:15 1997 Nick Clifton <nickc@cygnus.com>
* v850-opc.c (v850_opcodes[]): Add NOT_R0 flag to decect cases
where r0 is being used as a destination register.
start-sanitize-v850e
Thu Aug 21 11:09:09 1997 Nick Clifton <nickc@cygnus.com>
* v850-opc.c (v850_opcodes[]): Move divh opcodes next to each other.
end-sanitize-v850e
Wed Aug 20 00:43:11 1997 J"orn Rennecke <amylaar@cygnus.co.uk>
@ -2370,7 +2362,6 @@ Tue Aug 19 10:59:59 1997 Richard Henderson <rth@cygnus.com>
* alpha-opc.c (alpha_opcodes): Fix hw_rei_stall mungage.
start-sanitize-v850e
Mon Aug 18 11:10:03 1997 Nick Clifton <nickc@cygnus.com>
* v850-opc.c (v850_opcodes[]): Remove use of flag field.
@ -2386,7 +2377,6 @@ Mon Aug 18 11:08:25 1997 Nick Clifton <nickc@cygnus.com>
* configure (cgen_files): Add support for v850ea target.
* configure.in (cgen_files): Add support for v850ea target.
end-sanitize-v850e
Fri Aug 15 05:17:48 1997 Doug Evans <dje@canuck.cygnus.com>
@ -2400,7 +2390,6 @@ Fri Aug 15 05:17:48 1997 Doug Evans <dje@canuck.cygnus.com>
Wed Aug 13 18:52:11 1997 Nick Clifton <nickc@cygnus.com>
start-sanitize-v850e
* v850-dis.c (disassemble): Add support for v850EA instructions.
* v850-opc.c (insert_i5div, extract_i5div): New Functions.
@ -2412,7 +2401,6 @@ start-sanitize-v850e
extract_d16_16, insert_i9, extract_i9, insert_u9, extract_u9,
insert_spe, extract_spe): New Functions.
(v850_opcodes): Add v850E instructions.
end-sanitize-v850e
* v850-opc.c: Reorganised and re-layed out to improve readability
and portability.

4
opcodes/configure vendored
View File

@ -3847,7 +3847,7 @@ if test x${all_targets} = xfalse ; then
bfd_hppa_arch) ta="$ta hppa-dis.lo" ;;
bfd_i386_arch) ta="$ta i386-dis.lo" ;;
bfd_i860_arch) ;;
bfd_i960_arch) ta="$ta i960-dis.lo" ;;
bfd_i960_arch) ta="$ta $cgen_files i960-dis.lo i960c-opc.lo i960c-asm.lo i960c-dis.lo" ;;
bfd_m32r_arch) ta="$ta $cgen_files m32r-opc.lo m32r-asm.lo m32r-dis.lo" ;;
bfd_m68k_arch) ta="$ta m68k-dis.lo m68k-opc.lo" ;;
bfd_m88k_arch) ta="$ta m88k-dis.lo" ;;
@ -3870,10 +3870,8 @@ if test x${all_targets} = xfalse ; then
bfd_dvp_arch) ta="$ta mips-dis.lo mips-opc.lo mips16-opc.lo dvp-dis.lo dvp-opc.lo" ;;
# end-sanitize-sky
bfd_v850_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
# start-sanitize-v850e
bfd_v850e_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
bfd_v850ea_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
# end-sanitize-v850e
bfd_vax_arch) ta="$ta vax-dis.lo" ;;
bfd_w65_arch) ta="$ta w65-dis.lo" ;;
bfd_we32k_arch) ;;

View File

@ -1,4 +1,4 @@
dnl Process this file with autoconf to produce a configure script.
nl Process this file with autoconf to produce a configure script.
dnl
AC_PREREQ(2.12.1)
@ -163,9 +163,7 @@ if test x${all_targets} = xfalse ; then
bfd_convex_arch) ;;
bfd_d10v_arch) ta="$ta d10v-dis.lo d10v-opc.lo" ;;
bfd_d30v_arch) ta="$ta d30v-dis.lo d30v-opc.lo" ;;
# start-sanitize-fr30
bfd_fr30_arch) ta="$ta $cgen_files fr30-opc.lo fr30-asm.lo fr30-dis.lo" ;;
# end-sanitize-fr30
bfd_h8300_arch) ta="$ta h8300-dis.lo" ;;
bfd_h8500_arch) ta="$ta h8500-dis.lo" ;;
bfd_hppa_arch) ta="$ta hppa-dis.lo" ;;
@ -194,10 +192,8 @@ if test x${all_targets} = xfalse ; then
bfd_dvp_arch) ta="$ta mips-dis.lo mips-opc.lo mips16-opc.lo dvp-dis.lo dvp-opc.lo" ;;
# end-sanitize-sky
bfd_v850_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
# start-sanitize-v850e
bfd_v850e_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
bfd_v850ea_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
# end-sanitize-v850e
bfd_vax_arch) ta="$ta vax-dis.lo" ;;
bfd_w65_arch) ta="$ta w65-dis.lo" ;;
bfd_we32k_arch) ;;

View File

@ -125,34 +125,6 @@ else
done
fi
v850_files="configure configure.in ChangeLog"
if ( echo $* | grep keep\-v850e > /dev/null ) ; then
for i in $v850_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping v850e stuff in $i
fi
fi
done
else
for i in $v850_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"v850e\" from $i...
fi
cp $i new
sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
vr4320_files="ChangeLog"
if ( echo $* | grep keep\-vr4320 > /dev/null ) ; then
for i in $vr4320_files ; do

View File

@ -1,3 +1,19 @@
1999-01-04 Jason Molenda (jsm@bugshack.cygnus.com)
* configure.in: Require autoconf 2.12.1 or higher.
1998-12-08 James E Wilson <wilson@wilson-pc.cygnus.com>
* configure.in (i960-*-*): Add.
* configure: Rebuild.
start-sanitize-gxsim
1998-11-13 Frank Ch. Eigler <fche@elastic.org>
* configure.in: Added "--enable-sim-gx" option.
* configure: Regenerated.
end-sanitize-gxsim
Wed Nov 4 19:11:43 1998 Dave Brolley <brolley@cygnus.com>
* configure.in: Added case for fr30-*-*.
@ -63,13 +79,11 @@ Wed Oct 8 12:38:48 1997 Andrew Cagney <cagney@b1.cygnus.com>
target.
* configure: Regenerate.
start-sanitize-v850e
Fri Sep 12 13:10:31 1997 Andrew Cagney <cagney@b1.cygnus.com>
* configure.in (extra_subdirs): v850ea needs igen.
* configure: Re-generate.
end-sanitize-v850e
Mon Sep 1 16:48:23 1997 Andrew Cagney <cagney@b1.cygnus.com>
* configure.in (testdir): When a testsuite directory, add that to
@ -91,7 +105,6 @@ Mon Aug 25 16:26:53 1997 Andrew Cagney <cagney@b1.cygnus.com>
simulator.
* configure: Regenerate.
start-sanitize-v850e
Mon Aug 18 10:56:59 1997 Nick Clifton <nickc@cygnus.com>
* configure.in (extra_subdirs): Add v850e target.
@ -100,7 +113,6 @@ Mon Aug 18 10:56:59 1997 Nick Clifton <nickc@cygnus.com>
* configure.in (extra_subdirs): Add v850ea target.
end-sanitize-v850e
Fri Jul 25 11:40:47 1997 Doug Evans <dje@canuck.cygnus.com>
* configure.in (sparc*-*-*): Don't build erc32.

81
sim/configure vendored
View File

@ -13,6 +13,8 @@ ac_default_prefix=/usr/local
# Any additions from configure.in:
ac_help="$ac_help
--enable-sim "
ac_help="$ac_help
"
# Initialize some variables set by options.
# The variables have the same names as the options, with
@ -527,7 +529,7 @@ fi
# Extract the first word of "gcc", so it can be a program name with args.
set dummy gcc; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:531: checking for $ac_word" >&5
echo "configure:533: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
@ -556,7 +558,7 @@ if test -z "$CC"; then
# Extract the first word of "cc", so it can be a program name with args.
set dummy cc; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:560: checking for $ac_word" >&5
echo "configure:562: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
@ -606,7 +608,7 @@ fi
# Extract the first word of "cl", so it can be a program name with args.
set dummy cl; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:610: checking for $ac_word" >&5
echo "configure:612: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
@ -637,7 +639,7 @@ fi
fi
echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
echo "configure:641: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
echo "configure:643: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
ac_ext=c
# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
@ -647,11 +649,11 @@ ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$a
cross_compiling=$ac_cv_prog_cc_cross
cat > conftest.$ac_ext <<EOF
#line 651 "configure"
#line 653 "configure"
#include "confdefs.h"
main(){return(0);}
EOF
if { (eval echo configure:655: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:657: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
ac_cv_prog_cc_works=yes
# If we can't run a trivial program, we are probably using a cross compiler.
if (./conftest; exit) 2>/dev/null; then
@ -671,12 +673,12 @@ if test $ac_cv_prog_cc_works = no; then
{ echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
fi
echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
echo "configure:675: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
echo "configure:677: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
cross_compiling=$ac_cv_prog_cc_cross
echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
echo "configure:680: checking whether we are using GNU C" >&5
echo "configure:682: checking whether we are using GNU C" >&5
if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
@ -685,7 +687,7 @@ else
yes;
#endif
EOF
if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:689: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:691: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
ac_cv_prog_gcc=yes
else
ac_cv_prog_gcc=no
@ -704,7 +706,7 @@ ac_test_CFLAGS="${CFLAGS+set}"
ac_save_CFLAGS="$CFLAGS"
CFLAGS=
echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
echo "configure:708: checking whether ${CC-cc} accepts -g" >&5
echo "configure:710: checking whether ${CC-cc} accepts -g" >&5
if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
@ -766,7 +768,7 @@ ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
# ./install, which can be erroneously created by make from ./install.sh.
echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
echo "configure:770: checking for a BSD compatible install" >&5
echo "configure:772: checking for a BSD compatible install" >&5
if test -z "$INSTALL"; then
if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
@ -823,7 +825,7 @@ else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; }
fi
echo $ac_n "checking host system type""... $ac_c" 1>&6
echo "configure:827: checking host system type" >&5
echo "configure:829: checking host system type" >&5
host_alias=$host
case "$host_alias" in
@ -844,7 +846,7 @@ host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
echo "$ac_t""$host" 1>&6
echo $ac_n "checking build system type""... $ac_c" 1>&6
echo "configure:848: checking build system type" >&5
echo "configure:850: checking build system type" >&5
build_alias=$build
case "$build_alias" in
@ -870,7 +872,7 @@ fi
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:874: checking for $ac_word" >&5
echo "configure:876: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
@ -901,7 +903,7 @@ fi
# Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
set dummy ${ac_tool_prefix}ranlib; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:905: checking for $ac_word" >&5
echo "configure:907: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
@ -932,7 +934,7 @@ if test -n "$ac_tool_prefix"; then
# Extract the first word of "ranlib", so it can be a program name with args.
set dummy ranlib; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:936: checking for $ac_word" >&5
echo "configure:938: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
@ -1011,7 +1013,7 @@ else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; }
fi
echo $ac_n "checking host system type""... $ac_c" 1>&6
echo "configure:1015: checking host system type" >&5
echo "configure:1017: checking host system type" >&5
host_alias=$host
case "$host_alias" in
@ -1032,7 +1034,7 @@ host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
echo "$ac_t""$host" 1>&6
echo $ac_n "checking target system type""... $ac_c" 1>&6
echo "configure:1036: checking target system type" >&5
echo "configure:1038: checking target system type" >&5
target_alias=$target
case "$target_alias" in
@ -1050,7 +1052,7 @@ target_os=`echo $target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
echo "$ac_t""$target" 1>&6
echo $ac_n "checking build system type""... $ac_c" 1>&6
echo "configure:1054: checking build system type" >&5
echo "configure:1056: checking build system type" >&5
build_alias=$build
case "$build_alias" in
@ -1094,7 +1096,7 @@ test "$program_transform_name" = "" && program_transform_name="s,x,x,"
# Extract the first word of "gcc", so it can be a program name with args.
set dummy gcc; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:1098: checking for $ac_word" >&5
echo "configure:1100: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
@ -1123,7 +1125,7 @@ if test -z "$CC"; then
# Extract the first word of "cc", so it can be a program name with args.
set dummy cc; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:1127: checking for $ac_word" >&5
echo "configure:1129: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
@ -1173,7 +1175,7 @@ fi
# Extract the first word of "cl", so it can be a program name with args.
set dummy cl; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:1177: checking for $ac_word" >&5
echo "configure:1179: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
@ -1204,7 +1206,7 @@ fi
fi
echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
echo "configure:1208: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
echo "configure:1210: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
ac_ext=c
# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
@ -1214,11 +1216,11 @@ ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$a
cross_compiling=$ac_cv_prog_cc_cross
cat > conftest.$ac_ext <<EOF
#line 1218 "configure"
#line 1220 "configure"
#include "confdefs.h"
main(){return(0);}
EOF
if { (eval echo configure:1222: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:1224: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
ac_cv_prog_cc_works=yes
# If we can't run a trivial program, we are probably using a cross compiler.
if (./conftest; exit) 2>/dev/null; then
@ -1238,12 +1240,12 @@ if test $ac_cv_prog_cc_works = no; then
{ echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
fi
echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
echo "configure:1242: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
echo "configure:1244: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
cross_compiling=$ac_cv_prog_cc_cross
echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
echo "configure:1247: checking whether we are using GNU C" >&5
echo "configure:1249: checking whether we are using GNU C" >&5
if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
@ -1252,7 +1254,7 @@ else
yes;
#endif
EOF
if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1256: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1258: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
ac_cv_prog_gcc=yes
else
ac_cv_prog_gcc=no
@ -1271,7 +1273,7 @@ ac_test_CFLAGS="${CFLAGS+set}"
ac_save_CFLAGS="$CFLAGS"
CFLAGS=
echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
echo "configure:1275: checking whether ${CC-cc} accepts -g" >&5
echo "configure:1277: checking whether ${CC-cc} accepts -g" >&5
if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
@ -1309,7 +1311,7 @@ AR=${AR-ar}
# Extract the first word of "ranlib", so it can be a program name with args.
set dummy ranlib; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:1313: checking for $ac_word" >&5
echo "configure:1315: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
@ -1380,6 +1382,7 @@ case "${target}" in
fr30-*-*) sim_target=fr30 ;;
h8300*-*-*) sim_target=h8300 ;;
h8500-*-*) sim_target=h8500 ;;
i960-*-*) sim_target=i960 ;;
m32r-*-*) sim_target=m32r ;;
mips*-*-*)
# The MIPS simulator can only be compiled by gcc.
@ -1418,7 +1421,6 @@ case "${target}" in
extra_subdirs="${extra_subdirs} igen"
only_if_gcc=yes
;;
# start-sanitize-v850e
v850e-*-*)
# The V850 simulator can only be compiled by gcc.
sim_target=v850
@ -1431,7 +1433,6 @@ case "${target}" in
extra_subdirs="${extra_subdirs} igen"
only_if_gcc=yes
;;
# end-sanitize-v850e
w65-*-*)
sim_target=w65
# The w65 is suffering from gradual decay.
@ -1458,6 +1459,22 @@ case "${target}" in
esac
# start-sanitize-gxsim
# Check whether --enable-sim-gx or --disable-sim-gx was given.
if test "${enable_sim_gx+set}" = set; then
enableval="$enable_sim_gx"
case "${enableval}" in
yes)
if test -d ${srcdir}/${sim_target}-gx ; then
extra_subdirs="${sim_target}-gx"
else
echo "configure: warning: GX simulator not available for ${sim_target}" 1>&2
fi ;;
esac
fi
# end-sanitize-gxsim
# Is there a testsuite directory for the target?
testdir=`echo ${target} | sed -e 's/-.*-/-/'`
if test -r ${srcdir}/testsuite/${testdir}/configure ; then

View File

@ -97,7 +97,6 @@ case "${target}" in
extra_subdirs="${extra_subdirs} igen"
only_if_gcc=yes
;;
# start-sanitize-v850e
v850e-*-*)
# The V850 simulator can only be compiled by gcc.
sim_target=v850
@ -110,7 +109,6 @@ case "${target}" in
extra_subdirs="${extra_subdirs} igen"
only_if_gcc=yes
;;
# end-sanitize-v850e
w65-*-*)
sim_target=w65
# The w65 is suffering from gradual decay.

View File

@ -41,32 +41,4 @@ Things-to-lose:
Do-last:
v850e_files="interp.c simops.c v850.igen v850-dc ChangeLog sim-main.h"
if ( echo $* | grep keep\-v850e > /dev/null ) ; then
for i in $v850e_files ; do
if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping v850e stuff in $i
fi
fi
done
else
for i in $v850e_files ; do
if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"v850e\" from $i...
fi
cp $i new
sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
# End of file.