diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2010-08-24 01:14:38 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2010-08-24 01:14:38 +0000 |
commit | 9a1ac7768463c9b31fb7226bf6b23e3e747641d9 (patch) | |
tree | 1ef9f258f420c97359ec9d8a54b81ac478799716 /sim/testsuite | |
parent | 8b85c8b2fe8a949e80384523d4c1fc1e06e0fa77 (diff) | |
download | binutils-9a1ac7768463c9b31fb7226bf6b23e3e747641d9.zip binutils-9a1ac7768463c9b31fb7226bf6b23e3e747641d9.tar.gz binutils-9a1ac7768463c9b31fb7226bf6b23e3e747641d9.tar.bz2 |
* sim/cris/asm/nonvcv32.ms: Neutralize changed &&-in-macro gas syntax.
Diffstat (limited to 'sim/testsuite')
-rw-r--r-- | sim/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | sim/testsuite/sim/cris/asm/nonvcv32.ms | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/sim/testsuite/ChangeLog b/sim/testsuite/ChangeLog index dac320f..36e3add 100644 --- a/sim/testsuite/ChangeLog +++ b/sim/testsuite/ChangeLog @@ -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@. diff --git a/sim/testsuite/sim/cris/asm/nonvcv32.ms b/sim/testsuite/sim/cris/asm/nonvcv32.ms index 7e6ee5b..98af367 100644 --- a/sim/testsuite/sim/cris/asm/nonvcv32.ms +++ b/sim/testsuite/sim/cris/asm/nonvcv32.ms @@ -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 |