[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / Hexagon / rdf-copy-renamable-reserved.mir
blobea8e5fb3cfcbc68fad833beca47867b243661b23
1 # RUN: llc -march=hexagon -run-pass hexagon-rdf-opt -hexagon-rdf-track-reserved %s -o - | FileCheck %s
3 # Check that r29 gets propagated into the A2_addi, and that the renamable
4 # flag is cleared.
6 # CHECK: renamable $r28 = COPY $r29
7 # CHECK-NOT: renamable
9 ---
10 name: fred
11 tracksRegLiveness: true
13 body: |
14   bb.0:
15     renamable $r28 = COPY $r29
16     $r0 = A2_addi renamable $r28, 1
17     J2_jumpr $r31, implicit-def $pc, implicit $r0
18 ...