[llvm] bb810d8 - [RISCV] Disable machine verifier in gisel-commandline-option.ll. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 6 09:32:45 PDT 2023


Author: Craig Topper
Date: 2023-09-06T09:32:32-07:00
New Revision: bb810d8fa06bf056d848bccc399bf287201a04f2

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

LOG: [RISCV] Disable machine verifier in gisel-commandline-option.ll. NFC

Hopefully this fixes the expensive checks build.

Added: 
    

Modified: 
    llvm/test/CodeGen/RISCV/GlobalISel/gisel-commandline-option.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/CodeGen/RISCV/GlobalISel/gisel-commandline-option.ll b/llvm/test/CodeGen/RISCV/GlobalISel/gisel-commandline-option.ll
index 7dec60d368b464..f36e4d9f87e2d3 100644
--- a/llvm/test/CodeGen/RISCV/GlobalISel/gisel-commandline-option.ll
+++ b/llvm/test/CodeGen/RISCV/GlobalISel/gisel-commandline-option.ll
@@ -1,16 +1,17 @@
 ; RUN: llc -mtriple=riscv64-- -debug-pass=Structure %s -o /dev/null 2>&1 \
-; RUN:   -O0 -global-isel \
+; RUN:   -verify-machineinstrs=0 -O0 -global-isel \
 ; RUN:   | FileCheck %s --check-prefix ENABLED --check-prefix NOFALLBACK
 
 ; RUN: llc -mtriple=riscv64-- -debug-pass=Structure %s -o /dev/null 2>&1 \
-; RUN:   -global-isel \
+; RUN:   -verify-machineinstrs=0 -global-isel \
 ; RUN:   | FileCheck %s --check-prefix ENABLED --check-prefix NOFALLBACK  --check-prefix ENABLED-O1
 
 ; RUN: llc -mtriple=riscv64-- -debug-pass=Structure %s -o /dev/null 2>&1 \
-; RUN:   -global-isel -global-isel-abort=2 \
+; RUN:   -verify-machineinstrs=0 -global-isel -global-isel-abort=2 \
 ; RUN:   | FileCheck %s --check-prefix ENABLED --check-prefix FALLBACK --check-prefix ENABLED-O1
 
 ; RUN: llc -mtriple=riscv64-- -debug-pass=Structure %s -o /dev/null 2>&1 \
+; RUN:   -verify-machineinstrs=0 \
 ; RUN:   | FileCheck %s --check-prefix DISABLED
 
 ; ENABLED:       IRTranslator


        


More information about the llvm-commits mailing list