xref: /qemu/tests/tcg/hexagon/test_hl.S (revision 0ec8384f)
1/* Purpose: test example, verify the soundness of the high/low assignment */
2
3    .text
4    .globl _start
5
6_start:
7    {
8        r0.H = #42
9    }
10    {
11        r0.L = #69
12    }
13    {
14        p0 = cmp.eq(r0, #2752581); if (p0.new) jump:t pass
15        jump fail
16    }
17