[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / PowerPC / GlobalISel / legalize-ret.mir
blob722651168810559e95b8a78d2e1935201ae07231
1 # RUN: llc -mtriple=powerpc64le-unknown-linux-gnu -global-isel -run-pass=legalizer -verify-machineinstrs %s -o - | FileCheck %s
3 ---
4 name:            test_simple
5 body:             |
6   ; CHECK-LABEL: name: test_simple
7   ; CHECK: [[IN:%[0-9]+]]:_(s64) = COPY $x3
8   ; CHECK: $x3 = COPY [[IN]]
9   ; CHECK: BLR8 implicit $lr8, implicit $rm, implicit $x3
10   bb.1.entry:
11     liveins: $x3
13     %0:_(s64) = COPY $x3
14     $x3 = COPY %0(s64)
15     BLR8 implicit $lr8, implicit $rm, implicit $x3
17 ...