mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-03 23:56:39 +00:00
* sim/cris/asm/nonvcv32.ms: Neutralize changed &&-in-macro gas syntax.
This commit is contained in:
parent
8b85c8b2fe
commit
9a1ac77684
@ -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@.
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user