1# mach: crisv3 crisv8 crisv10
2# output: bed0bed1\n
3
4# Test that jump indirect clears the "prefixed"
5# bit.
6
7 .include "testutils.inc"
8 .data
9w:
10 .dword x1
11y:
12 .dword 0xbed0bed1
13
14 start
15x:
16 move.d y,r3
17 jump [w]
18x1:
19 move.d [r3],r3
20 dumpr3 ; bed0bed1
21 quit
22