Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / fold-operands-order.mir
blobb23faff507e3202b5c495fad0179c179b34a1203
1 # RUN: llc -mtriple=amdgcn--amdhsa -mcpu=hawaii -verify-machineinstrs -run-pass si-fold-operands -o - %s | FileCheck -check-prefix=GCN %s
2 ...
3 ---
5 # Blocks should be processed in program order to make sure folds
6 # aren't made in users before the def is seen.
8 # GCN-LABEL: name: mov_in_use_list_2x{{$}}
9 # GCN: %3:vgpr_32 = COPY undef %0
12 name: mov_in_use_list_2x
13 tracksRegLiveness: true
14 registers:
15   - { id: 0, class: vgpr_32, preferred-register: '' }
16   - { id: 1, class: vgpr_32, preferred-register: '' }
17   - { id: 2, class: vgpr_32, preferred-register: '' }
18   - { id: 3, class: vgpr_32, preferred-register: '' }
19 liveins:
20 body:             |
21   bb.0:
22     successors: %bb.2
24     S_BRANCH %bb.2
26   bb.1:
27     successors: %bb.2
29     %2 = COPY %1
30     %3 = V_XOR_B32_e64 killed %2, undef %0, implicit $exec
31     S_NOP 0, implicit %3
33   bb.2:
34     successors: %bb.1
36     %1 = V_MOV_B32_e32 0, implicit $exec
37     S_BRANCH %bb.1
39 ...