[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / MIR / Hexagon / parse-lane-masks.mir
blob915c354b5a0ff74b591caf5506c03cf50f64a5aa
1 # RUN: llc -march=hexagon -run-pass none -o - %s | FileCheck %s
2 # Check that the MIR parser can parse lane masks in block liveins.
4 # CHECK-LABEL: name: foo
5 # CHECK: bb.0:
6 # CHECK: liveins: $d0:0x0000000000000002, $d1, $d2:0x0000000000000010
8 --- |
9   define void @foo() {
10     ret void
11   }
12 ...
14 ---
15 name: foo
16 tracksRegLiveness: true
18 body: |
19   bb.0:
20     liveins: $d0:0x00002, $d1, $d2:16
21     A2_nop
22 ...