[llvm] 7899572 - AMDGPU: Forcibly disable verifier in test

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 7 07:47:11 PST 2025


Author: Matt Arsenault
Date: 2025-01-07T22:46:46+07:00
New Revision: 7899572c88c6516b142c35e95e911917b623e057

URL: https://github.com/llvm/llvm-project/commit/7899572c88c6516b142c35e95e911917b623e057
DIFF: https://github.com/llvm/llvm-project/commit/7899572c88c6516b142c35e95e911917b623e057.diff

LOG: AMDGPU: Forcibly disable verifier in test

The test added in f6365a47a1ad9ab6d432f6e40d14a11419e21282 fails the verifier
for the reason noted in the comment, but we need to skip the verifier
error in EXPENSIVE_CHECKS builds

Added: 
    

Modified: 
    llvm/test/CodeGen/AMDGPU/swdev503538-move-to-valu-stack-srd-physreg.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/CodeGen/AMDGPU/swdev503538-move-to-valu-stack-srd-physreg.ll b/llvm/test/CodeGen/AMDGPU/swdev503538-move-to-valu-stack-srd-physreg.ll
index 6849c8b4e609ee..f0b3d334af67d6 100644
--- a/llvm/test/CodeGen/AMDGPU/swdev503538-move-to-valu-stack-srd-physreg.ll
+++ b/llvm/test/CodeGen/AMDGPU/swdev503538-move-to-valu-stack-srd-physreg.ll
@@ -1,4 +1,4 @@
-; RUN: not llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx90a -O0 2> %t.err < %s | FileCheck %s
+; RUN: not llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx90a -verify-machineinstrs=0 -O0 2> %t.err < %s | FileCheck %s
 ; RUN: FileCheck -check-prefix=ERR %s < %t.err
 
 ; FIXME: This error will be fixed by supporting arbitrary divergent


        


More information about the llvm-commits mailing list