gas/
* doc/as.texinfo: Document that Blackfin GAS does not accept SYMBOL = VALUE. ld/testsuite/ * ld-elf/sec64k.exp: Use ".set" instead of "=" for bfin-*-*.
This commit is contained in:
parent
4a29415da4
commit
f8739b83b9
4 changed files with 23 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2009-09-05 Jie Zhang <jie.zhang@analog.com>
|
||||
|
||||
* doc/as.texinfo: Document that Blackfin GAS does not
|
||||
accept SYMBOL = VALUE.
|
||||
|
||||
2009-09-05 Martin Thuresson <martin@mtme.org>
|
||||
|
||||
* config/tc-arc.c (struct syntax_classes): Rename member class
|
||||
|
|
|
@ -3272,6 +3272,10 @@ directive. @xref{Set,,@code{.set}}. In the same way, using a double
|
|||
equals sign @samp{=}@samp{=} here represents an equivalent of the
|
||||
@code{.eqv} directive. @xref{Eqv,,@code{.eqv}}.
|
||||
|
||||
@ifset Blackfin
|
||||
Blackfin does not support symbol assignment with @samp{=}.
|
||||
@end ifset
|
||||
|
||||
@node Symbol Names
|
||||
@section Symbol Names
|
||||
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2009-09-05 Jie Zhang <jie.zhang@analog.com>
|
||||
|
||||
* ld-elf/sec64k.exp: Use ".set" instead of "=" for bfin-*-*.
|
||||
|
||||
2009-09-03 Dave Korn <dave.korn.cygwin@gmail.com>
|
||||
|
||||
* ld-pe/longsecn.d: Adjusted to match new .text section merging
|
||||
|
|
|
@ -77,9 +77,17 @@ for { set i 0 } { $i < $max_sec / $secs_per_file } { incr i } {
|
|||
puts $ofd "bar_\\secn:"
|
||||
puts $ofd " .dc.a bar_\\secn"
|
||||
puts $ofd " .endm"
|
||||
puts $ofd " secn = [expr $i * $secs_per_file]"
|
||||
if {![istarget "bfin-*-*"]} then {
|
||||
puts $ofd " secn = [expr $i * $secs_per_file]"
|
||||
} else {
|
||||
puts $ofd " .set secn, [expr $i * $secs_per_file]"
|
||||
}
|
||||
puts $ofd " .rept $secs_per_file"
|
||||
puts $ofd " secn = secn + 1"
|
||||
if {![istarget "bfin-*-*"]} then {
|
||||
puts $ofd " secn = secn + 1"
|
||||
} else {
|
||||
puts $ofd " .set secn, secn + 1"
|
||||
}
|
||||
puts $ofd " sec %(secn), %(secn-1)"
|
||||
puts $ofd " .endr"
|
||||
|
||||
|
|
Loading…
Reference in a new issue