+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@.
.endm
.macro nonvc2q insn op min=-63 max=63
- .if \op >= \min &&&& \op <= \max
+ .if (\op >= \min) && (\op <= \max)
nonvc2 \insn,\op
.endif
.endm
; 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