[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / AArch64 / macro-fusion-addsub-2reg-const1.mir
blob8c5a85a4e7a6141608929217bf214126d4d26c64
1 # RUN: llc -o - %s -mtriple=aarch64-- -mattr=+fuse-addsub-2reg-const1 -run-pass postmisched | FileCheck %s --check-prefixes=CHECK,FUSION
2 # RUN: llc -o - %s -mtriple=aarch64-- -mattr=-fuse-addsub-2reg-const1 -run-pass postmisched | FileCheck %s --check-prefixes=CHECK,NOFUSION
3 ---
4 # CHECK-LABEL: name: addsub2reg
5 # CHECK: $w8 = ADDWrr killed renamable $w0, killed renamable $w1
6 # FUSION: renamable $w0 = ADDWri killed renamable $w8, 1, 0
7 # CHECK: $w9 = SUBWrr killed renamable $w2, killed renamable $w3
8 # NOFUSION: renamable $w0 = ADDWri killed renamable $w8, 1, 0
9 # CHECK: renamable $w1 = SUBWri killed renamable $w9, 1, 0
10 name: addsub2reg
11 tracksRegLiveness: true
12 body: |
13   bb.0.entry:
14     liveins: $w0, $w1, $w2, $w3
16     $w8 = ADDWrr killed renamable $w0, killed renamable $w1
17     $w9 = SUBWrr killed renamable $w2, killed renamable $w3
18     renamable $w0 = ADDWri killed renamable $w8, 1, 0
19     renamable $w1 = SUBWri killed renamable $w9, 1, 0
21     $w0 = ORRWrs killed renamable $w0, killed renamable $w1, 0
22     RET undef $lr, implicit $w0
23 ...