mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 10:34:21 +08:00
* sim/cris/asm/nonvcv32.ms: Neutralize changed &&-in-macro gas syntax.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2010-08-24 Hans-Peter Nilsson <hp@axis.com>
|
||||||
|
|
||||||
|
* sim/cris/asm/nonvcv32.ms: Neutralize changed &&-in-macro gas syntax.
|
||||||
|
|
||||||
2010-04-26 Mike Frysinger <vapier@gentoo.org>
|
2010-04-26 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* Makefile.in (arch): Set to @sim_arch@.
|
* Makefile.in (arch): Set to @sim_arch@.
|
||||||
|
@ -51,7 +51,7 @@
|
|||||||
.endm
|
.endm
|
||||||
|
|
||||||
.macro nonvc2q insn op min=-63 max=63
|
.macro nonvc2q insn op min=-63 max=63
|
||||||
.if \op >= \min &&&& \op <= \max
|
.if (\op >= \min) && (\op <= \max)
|
||||||
nonvc2 \insn,\op
|
nonvc2 \insn,\op
|
||||||
.endif
|
.endif
|
||||||
.endm
|
.endm
|
||||||
@ -118,12 +118,12 @@
|
|||||||
; Test all applicable constant, register and memory variants of a value.
|
; Test all applicable constant, register and memory variants of a value.
|
||||||
.macro tst op
|
.macro tst op
|
||||||
; Constants
|
; Constants
|
||||||
.if (\op <= 31 &&&& \op >= -32)
|
.if (\op <= 31) && (\op >= -32)
|
||||||
nonvciterq \op
|
nonvciterq \op
|
||||||
.elseif (\op <= 255 &&&& \op >= -128)
|
.elseif (\op <= 255) && (\op >= -128)
|
||||||
nonvcitermcb \op
|
nonvcitermcb \op
|
||||||
nonvcbwd bound,\op
|
nonvcbwd bound,\op
|
||||||
.elseif (\op <= 65535 &&&& \op >= -32767)
|
.elseif (\op <= 65535) && (\op >= -32767)
|
||||||
nonvcitermcw \op
|
nonvcitermcw \op
|
||||||
nonvc2 bound.w,\op
|
nonvc2 bound.w,\op
|
||||||
nonvc2 bound.d,\op
|
nonvc2 bound.d,\op
|
||||||
|
Reference in New Issue
Block a user