blob: 7eee7ae340a33b200d384786605fb245e2e49678 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// Verify DV detection on multiple paths
//
.text
.explicit
// RAW on r4 is avoided on both paths
// RAW on r5 is avoided on path 0 (from top) but not path 1 (from L)
cmp.eq p1, p2 = r1, r2
cmp.eq p3, p4 = r3, r0
(p1) mov r4 = 2
L:
(p2) mov r4 = 5
(p3) mov r5 = r7
(p4) mov r5 = r8
|