* sim/cris/asm/nonvcv32.ms: Neutralize changed &&-in-macro gas syntax.

This commit is contained in:
Hans-Peter Nilsson 2010-08-24 01:14:38 +00:00
parent 8b85c8b2fe
commit 9a1ac77684
2 changed files with 8 additions and 4 deletions

View File

@ -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>
* Makefile.in (arch): Set to @sim_arch@.

View File

@ -51,7 +51,7 @@
.endm
.macro nonvc2q insn op min=-63 max=63
.if \op >= \min &&&& \op <= \max
.if (\op >= \min) && (\op <= \max)
nonvc2 \insn,\op
.endif
.endm
@ -118,12 +118,12 @@
; Test all applicable constant, register and memory variants of a value.
.macro tst op
; Constants
.if (\op <= 31 &&&& \op >= -32)
.if (\op <= 31) && (\op >= -32)
nonvciterq \op
.elseif (\op <= 255 &&&& \op >= -128)
.elseif (\op <= 255) && (\op >= -128)
nonvcitermcb \op
nonvcbwd bound,\op
.elseif (\op <= 65535 &&&& \op >= -32767)
.elseif (\op <= 65535) && (\op >= -32767)
nonvcitermcw \op
nonvc2 bound.w,\op
nonvc2 bound.d,\op