* ld-srec/srec.exp (run_srec_test): m6811 code has references

to soft registers, define them with --defsym.
	* ld-selective/selective.exp: Likewise.
This commit is contained in:
Stephane Carrez 2001-02-08 18:57:47 +00:00
parent 98a797049b
commit fef67c28c8
3 changed files with 20 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2001-02-08 Stephane Carrez <Stephane.Carrez@worldnet.fr>
* ld-srec/srec.exp (run_srec_test): m6811 code has references
to soft registers, define them with --defsym.
* ld-selective/selective.exp: Likewise.
2001-01-14 Hans-Peter Nilsson <hp@bitrange.com>
* ld-sh/sh.exp: Use --oformat srec, not -oformat srec.

View File

@ -1,5 +1,5 @@
# Expect script for LD selective linking tests
# Copyright (C) 1998, 1999, 2000 Free Software Foundation
# Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@ -95,6 +95,12 @@ foreach testitem $seltests {
set objfile "$objfile -L ../gcc -lgcc"
}
# m6811/m6812 code has references to soft registers.
if {[istarget m6811-*-*] || [istarget m6812-*-*]} {
set objfile "$objfile --defsym _.frame=0 --defsym _.d1=0"
set objfile "$objfile --defsym _.d2=0"
}
if ![ld_simple_link $ld $ldfile "$ldflags [join $ldargs] $objfile"] {
fail $testname
continue

View File

@ -253,6 +253,13 @@ proc run_srec_test { test objs } {
set flags "$flags --defsym __truncsipsi2_d0_d2=0"
}
# m6811/m6812 code has references to soft registers.
if {[istarget m6811-*-*] || [istarget m6812-*-*]} {
set flags "$flags --defsym _.frame=0 --defsym _.d1=0 --defsym _.d2=0"
set flags "$flags --defsym _.d3=0 --defsym _.d4=0"
set flags "$flags --defsym _.tmp=0 --defsym _.xy=0"
}
# V850 targets need libgcc.a
if [istarget v850*-*-elf] {
set objs "$objs -L ../gcc -lgcc"