Skip to content

Commit bb810d8

Browse files
committed
[RISCV] Disable machine verifier in gisel-commandline-option.ll. NFC
Hopefully this fixes the expensive checks build.
1 parent ff5c726 commit bb810d8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
; RUN: llc -mtriple=riscv64-- -debug-pass=Structure %s -o /dev/null 2>&1 \
2-
; RUN: -O0 -global-isel \
2+
; RUN: -verify-machineinstrs=0 -O0 -global-isel \
33
; RUN: | FileCheck %s --check-prefix ENABLED --check-prefix NOFALLBACK
44

55
; RUN: llc -mtriple=riscv64-- -debug-pass=Structure %s -o /dev/null 2>&1 \
6-
; RUN: -global-isel \
6+
; RUN: -verify-machineinstrs=0 -global-isel \
77
; RUN: | FileCheck %s --check-prefix ENABLED --check-prefix NOFALLBACK --check-prefix ENABLED-O1
88

99
; RUN: llc -mtriple=riscv64-- -debug-pass=Structure %s -o /dev/null 2>&1 \
10-
; RUN: -global-isel -global-isel-abort=2 \
10+
; RUN: -verify-machineinstrs=0 -global-isel -global-isel-abort=2 \
1111
; RUN: | FileCheck %s --check-prefix ENABLED --check-prefix FALLBACK --check-prefix ENABLED-O1
1212

1313
; RUN: llc -mtriple=riscv64-- -debug-pass=Structure %s -o /dev/null 2>&1 \
14+
; RUN: -verify-machineinstrs=0 \
1415
; RUN: | FileCheck %s --check-prefix DISABLED
1516

1617
; ENABLED: IRTranslator

0 commit comments

Comments
 (0)