Browse Source

* baseboards/cris-sim.exp: Use switch, not case.

* baseboards/h8300.exp: Likewise.
	* config/base68k.exp (base68k_ld): Brace an if expression.
origin
Ben Elliston 21 years ago
parent
commit
459573046a
  1. 6
      ChangeLog
  2. 2
      baseboards/cris-sim.exp
  3. 2
      baseboards/h8300.exp
  4. 2
      config/base68k.exp

6
ChangeLog

@ -1,3 +1,9 @@
2006-05-22 Ben Elliston <bje@gnu.org>
* baseboards/cris-sim.exp: Use switch, not case.
* baseboards/h8300.exp: Likewise.
* config/base68k.exp (base68k_ld): Brace an if expression.
2006-05-22 Ben Elliston <bje@gnu.org>
* runtest.exp, baseboards/basic-sim.exp, baseboards/cf.exp,

2
baseboards/cris-sim.exp

@ -29,7 +29,7 @@ foreach x $board_variant_list {
regsub -all "^\[ \t\]*" "$x" "" x;
regsub -all "\[ \t\]*$" "$x" "" x;
case $x in {
switch $x {
# We force the arch to either pre-v32 (i.e. v10) or v32 for the
# "common" compatible subset, by letting the otherwise
# functionally equivalent gcc options "-march=..." and

2
baseboards/h8300.exp

@ -67,7 +67,7 @@ foreach x $board_variant_list {
regsub -all "^\[ \t\]*" "$x" "" x
regsub -all "\[ \t\]*$" "$x" "" x
case $x in {
switch $x {
{ h -mh } {
set linker_script "h8300h.ld"
}

2
config/base68k.exp

@ -105,7 +105,7 @@ proc base68k_ld { dest prog } {
}
}
if { ! $got_p } {
if $tries<=4 then {
if { $tries <= 4 } then {
if { $tries == 3 } then {
remote_reboot $dest
} else {

Loading…
Cancel
Save