1#mach: crisv10
2#output: Basic clock cycles, total @: 8\n
3#output: Memory source stall cycles: 0\n
4#output: Memory read-after-write stall cycles: 0\n
5#output: Movem source stall cycles: 0\n
6#output: Movem destination stall cycles: 0\n
7#output: Movem address stall cycles: 0\n
8#output: Multiplication source stall cycles: 0\n
9#output: Jump source stall cycles: 0\n
10#output: Branch misprediction stall cycles: 0\n
11#output: Jump target stall cycles: 0\n
12#sim: --cris-cycles=basic
13
14; Check that the memory indirection doesn't make the simulator barf.
15; Nothing deeper.
16
17 .include "testutils.inc"
18 startnostack
19 move.d 0f,r5
20 move.d [r5],r4
21 move.d [r5+],r3
22 move.d [r5],r2
23 break 15
24 nop
25 .p2align 2
260:
27 .dword 1,2,3
28