[ARM GlobalISel] Remove duplicate test. NFCI
authorDiana Picus <diana.picus@linaro.org>
Fri, 14 Dec 2018 13:28:34 +0000 (13:28 +0000)
committerDiana Picus <diana.picus@linaro.org>
Fri, 14 Dec 2018 13:28:34 +0000 (13:28 +0000)
Fixup for r349026. I forgot to delete these test functions from the
original file when I moved them to arm-legalize-exts.mir.

llvm-svn: 349146

llvm/test/CodeGen/ARM/GlobalISel/arm-legalizer.mir

index c4db9a7..c409eaf 100644 (file)
@@ -1,8 +1,5 @@
 # RUN: llc -mtriple arm-- -run-pass=legalizer %s -o - | FileCheck %s
 --- |
-  define void @test_sext_s8() { ret void }
-  define void @test_zext_s16() { ret void }
-
   define void @test_inttoptr_s32() { ret void }
   define void @test_ptrtoint_s32() { ret void }
 
   attributes #0 = { "target-features"="+vfp2" }
 ...
 ---
-name:            test_sext_s8
-# CHECK-LABEL: name: test_sext_s8
-legalized:       false
-# CHECK: legalized: true
-regBankSelected: false
-selected:        false
-tracksRegLiveness: true
-registers:
-  - { id: 0, class: _ }
-  - { id: 1, class: _ }
-  - { id: 2, class: _ }
-body:             |
-  bb.0:
-    liveins: $r0
-
-    %0(p0) = COPY $r0
-    %1(s8) = G_LOAD %0(p0) :: (load 1)
-    %2(s32) = G_SEXT %1
-    ; G_SEXT with s8 is legal, so we should find it unchanged in the output
-    ; CHECK: {{%[0-9]+}}:_(s32) = G_SEXT {{%[0-9]+}}
-    $r0 = COPY %2(s32)
-    BX_RET 14, $noreg, implicit $r0
-...
----
-name:            test_zext_s16
-# CHECK-LABEL: name: test_zext_s16
-legalized:       false
-# CHECK: legalized: true
-regBankSelected: false
-selected:        false
-tracksRegLiveness: true
-registers:
-  - { id: 0, class: _ }
-  - { id: 1, class: _ }
-  - { id: 2, class: _ }
-body:             |
-  bb.0:
-    liveins: $r0
-
-    %0(p0) = COPY $r0
-    %1(s16) = G_LOAD %0 :: (load 2)
-    %2(s32) = G_ZEXT %1
-    ; G_ZEXT with s16 is legal, so we should find it unchanged in the output
-    ; CHECK: {{%[0-9]+}}:_(s32) = G_ZEXT {{%[0-9]+}}
-    $r0 = COPY %2(s32)
-    BX_RET 14, $noreg, implicit $r0
-...
----
 name:            test_inttoptr_s32
 # CHECK-LABEL: name: test_inttoptr_s32
 legalized:       false