Skip to content

Commit 827d2b2

Browse files
committed
Revert "Bypass verifier for problematic tests"
This reverts commit a46bd5e.
1 parent 58d58fc commit 827d2b2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

llvm/test/CodeGen/AMDGPU/regalloc-failure-overlapping-insert-assert.mir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RUN: not llc -mtriple=amdgcn -mcpu=gfx908 -start-before=greedy,1 -stop-after=virtregrewriter,2 %s -o /dev/null 2>&1 | FileCheck -check-prefix=ERR %s
1+
# RUN: not llc -mtriple=amdgcn -mcpu=gfx908 -verify-machineinstrs -start-before=greedy,1 -stop-after=virtregrewriter,2 %s -o /dev/null 2>&1 | FileCheck -check-prefix=ERR %s
22

33
# Make sure there's no machine verifier error after failure.
44

llvm/test/CodeGen/AMDGPU/regalloc-illegal-eviction-assert.ll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: not llc -mtriple=amdgcn -mcpu=gfx908 -o - %s 2>%t.err | FileCheck -implicit-check-not=error %s
1+
; RUN: not llc -mtriple=amdgcn -mcpu=gfx908 -verify-machineinstrs -o - %s 2>%t.err | FileCheck -implicit-check-not=error %s
22
; RUN: FileCheck -check-prefix=ERR %s < %t.err
33

44
; This testcase would fail on an "illegal eviction". If the assert was
@@ -9,9 +9,9 @@
99
%asm.output = type { <16 x i32>, <8 x i32>, <5 x i32>, <4 x i32>, <16 x i32> }
1010

1111
; CHECK-LABEL: {{^}}illegal_eviction_assert:
12-
; CHECK: ; def v[13:28] v[0:7] v[8:12] v[0:3] a[0:15]
12+
; CHECK: ; def v[4:19] v[20:27] v[0:4] v[0:3] a[0:15]
1313
; CHECK: ; clobber
14-
; CHECK: ; use v[13:28] v[0:7] v[8:12] v[0:3] a[1:16]
14+
; CHECK: ; use v[4:19] v[20:27] v[0:4] v[0:3] a[1:16]
1515
define void @illegal_eviction_assert(ptr addrspace(1) %arg) #0 {
1616
;%agpr0 = call i32 asm sideeffect "; def $0","=${a0}"()
1717
%asm = call %asm.output asm sideeffect "; def $0 $1 $2 $3 $4","=v,=v,=v,=v,={a[0:15]}"()

llvm/test/CodeGen/AMDGPU/register-killed-error-after-alloc-failure1.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: not llc -mtriple=amdgcn -mcpu=gfx908 -filetype=null %s 2>&1 | FileCheck -check-prefix=ERR -implicit-check-not=error %s
1+
; RUN: not llc -mtriple=amdgcn -mcpu=gfx908 -verify-machineinstrs -filetype=null %s 2>&1 | FileCheck -check-prefix=ERR -implicit-check-not=error %s
22

33
; ERR: error: inline assembly requires more registers than available
44
; ERR-NOT: ERROR

0 commit comments

Comments
 (0)