* gas/m32r/interfere.s: New testcase.

* gas/m32r/error.exp: Run it.
pr 18634
This commit is contained in:
Doug Evans
1999-01-07 00:45:24 +00:00
parent e0eaa63837
commit 6b4e5a82fe
2 changed files with 15 additions and 1 deletions

View File

@ -15,7 +15,7 @@
Do-first:
m32rx_files="fslotx.s fslotx.d m32rx.s m32rx.d m32rx.exp error.exp wrongsize.s"
m32rx_files="fslotx.s fslotx.d m32rx.s m32rx.d m32rx.exp error.exp interfere.s wrongsize.s"
if ( echo $* | grep keep\-m32rx > /dev/null ) ; then
keep_these_too="${m32rx_files} ${keep_these_too}"
else

View File

@ -0,0 +1,14 @@
; Test error messages in instances where output operands interfere.
; { dg-do assemble { target m32r-*-* } }
; { dg-options -m32rx }
interfere:
trap #1 || cmp r3, r4 ; { dg-error "write to the same" }
; { dg-warning "same" "out->in" { target *-*-* } { 7 } }
rte || addx r3, r4 ; { dg-error "write to the same" }
; { dg-warning "same" "out->in" { target *-*-* } { 9 } }
cmp r1, r2 || addx r3, r4 ; { dg-error "write to the same" }
; { dg-warning "same" "out->in" { target *-*-* } { 11 } }
mvtc r0, psw || addx r1, r4 ; { dg-error "write to the same" }
; { dg-warning "same" "out->in" { target *-*-* } { 13 } }