| OLD | NEW |
| 1 # mach: crisv3 crisv8 crisv10 | 1 # mach: crisv3 crisv8 crisv10 |
| 2 # xerror: | 2 # xerror: |
| 3 # output: General register * PC is not implemented.\nprogram stopped with signal
5.\n | 3 # output: General register * PC is not implemented.\nprogram stopped with signal
5 (*).\n |
| 4 | 4 |
| 5 # Both source and dest contain PC for "test.d r" (move.d r,r). Ideally, | 5 # Both source and dest contain PC for "test.d r" (move.d r,r). Ideally, |
| 6 # the output message should say "read" of PC, but we allow PC as source in | 6 # the output message should say "read" of PC, but we allow PC as source in |
| 7 # a move.d r,R insn, so there's no logical way to get that, short of a | 7 # a move.d r,R insn, so there's no logical way to get that, short of a |
| 8 # special pattern, which would be just too ugly. The output message says | 8 # special pattern, which would be just too ugly. The output message says |
| 9 # "write", but let's match "read" too so we won't fail if things suddenly | 9 # "write", but let's match "read" too so we won't fail if things suddenly |
| 10 # improve. | 10 # improve. |
| 11 | 11 |
| 12 .include "testutils.inc" | 12 .include "testutils.inc" |
| 13 startnostack | 13 startnostack |
| 14 setf | 14 setf |
| 15 test.d pc | 15 test.d pc |
| 16 quit | 16 quit |
| OLD | NEW |