diff options
Diffstat (limited to 'test/CodeGen/AMDGPU/GlobalISel/legalize-shl.mir')
-rw-r--r-- | test/CodeGen/AMDGPU/GlobalISel/legalize-shl.mir | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/CodeGen/AMDGPU/GlobalISel/legalize-shl.mir b/test/CodeGen/AMDGPU/GlobalISel/legalize-shl.mir new file mode 100644 index 0000000000000..3d5251d102072 --- /dev/null +++ b/test/CodeGen/AMDGPU/GlobalISel/legalize-shl.mir @@ -0,0 +1,18 @@ +# RUN: llc -mtriple=amdgcn-mesa-mesa3d -mcpu=fiji -O0 -run-pass=legalizer -global-isel %s -o - | FileCheck %s + +--- +name: test_shl +registers: + - { id: 0, class: _ } + - { id: 1, class: _ } + - { id: 2, class: _ } +body: | + bb.0.entry: + liveins: %vgpr0, %vgpr1 + ; CHECK-LABEL: name: test_shl + ; CHECK: %2(s32) = G_SHL %0, %1 + + %0(s32) = COPY %vgpr0 + %1(s32) = COPY %vgpr1 + %2(s32) = G_SHL %0, %1 +... |