summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorTom Stellard <tstellar@redhat.com>2017-09-27 18:06:46 +0000
committerTom Stellard <tstellar@redhat.com>2017-09-27 18:06:46 +0000
commitb34136ea8537ea422babb1dfdc75f2a95273333e (patch)
tree3ede835c99d8f3794bd998ba535bd16b10c38296 /test
parenta6177dc4c3891024f86b99d8ea728b9a6a7a8dbf (diff)
Revert "Merging r312337:"
This reverts commit r314324. I unintentionally deleted most of the svn:mergeinfo for the release_50 branch with this commit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_50@314326 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/AMDGPU/hazard.mir31
1 files changed, 0 insertions, 31 deletions
diff --git a/test/CodeGen/AMDGPU/hazard.mir b/test/CodeGen/AMDGPU/hazard.mir
deleted file mode 100644
index d495a327e9e3..000000000000
--- a/test/CodeGen/AMDGPU/hazard.mir
+++ /dev/null
@@ -1,31 +0,0 @@
-# RUN: llc -march=amdgcn -mcpu=tonga -verify-machineinstrs -run-pass post-RA-hazard-rec %s -o - | FileCheck -check-prefix=GCN -check-prefix=VI %s
-# RUN: llc -march=amdgcn -mcpu=gfx900 -verify-machineinstrs -run-pass post-RA-hazard-rec %s -o - | FileCheck -check-prefix=GCN -check-prefix=GFX9 %s
-
-# GCN: bb.0.entry:
-# GCN: %m0 = S_MOV_B32
-# GFX9: S_NOP 0
-# VI-NOT: S_NOP_0
-# GCN: V_INTERP_P1_F32
-
----
-name: hazard_implicit_def
-alignment: 0
-exposesReturnsTwice: false
-legalized: false
-regBankSelected: false
-selected: false
-tracksRegLiveness: true
-registers:
-liveins:
- - { reg: '%sgpr7', virtual-reg: '' }
- - { reg: '%vgpr4', virtual-reg: '' }
-body: |
- bb.0.entry:
- liveins: %sgpr7, %vgpr4
-
- %m0 = S_MOV_B32 killed %sgpr7
- %vgpr5 = IMPLICIT_DEF
- %vgpr0 = V_INTERP_P1_F32 killed %vgpr4, 0, 0, implicit %m0, implicit %exec
- SI_RETURN_TO_EPILOG killed %vgpr5, killed %vgpr0
-
-...