]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/testsuite/gas/bpf/jump-pseudoc.s
Revert "2.41 Release sources"
[thirdparty/binutils-gdb.git] / gas / testsuite / gas / bpf / jump-pseudoc.s
CommitLineData
bba4624d
GM
1# Tests for the JUMP pseudo-C instructions
2 .text
3 goto 2f
4 r1 += r1
51: if r3 == 3 goto 2f
6 if r3 == r4 goto 2f
72: if r3 >= 3 goto 1b
8 if r3 >= r4 goto 1b
91: if r3 < 3 goto 1f
10 if r3 < r4 goto 1f
111: if r3 <= 3 goto 1f
12 if r3 <= r4 goto 1f
131: if r3 & 3 goto 1f
14 if r3 & r4 goto 1f
151: if r3 != 3 goto 1f
16 if r3 != r4 goto 1f
171: if r3 s> 3 goto 1f
18 if r3 s> r4 goto 1f
191: if r3 s>= 3 goto 1f
20 if r3 s>= r4 goto 1f
211: if r3 s< 3 goto 1f
22 if r3 s< r4 goto 1f
231: if r3 s<= 3 goto 1f
24 if r3 s<= r4 goto 1f
b5c37946
SJ
251: gotol 1f
26 gotol 1f
bba4624d 271: