xref: /llvm-project/llvm/test/CodeGen/MIR/Hexagon/parse-lane-masks.mir (revision 2208c97c1bec2512d4e47b6223db6d95a7037956)
1# RUN: llc -mtriple=hexagon -run-pass none -o - %s | FileCheck %s
2# Check that the MIR parser can parse lane masks in block liveins.
3
4# CHECK-LABEL: name: foo
5# CHECK: bb.0:
6# CHECK: liveins: $d0:0x0000000000000002, $d1, $d2:0x0000000000000010
7
8--- |
9  define void @foo() {
10    ret void
11  }
12...
13
14---
15name: foo
16tracksRegLiveness: true
17
18body: |
19  bb.0:
20    liveins: $d0:0x00002, $d1, $d2:16
21    A2_nop
22...
23
24