forked from OSchip/llvm-project
[X86] Fix pipeline tests when enabling MIR verification, NFC
llvm-svn: 345226
This commit is contained in:
parent
1265ddef99
commit
24d12c28e7
|
@ -1,4 +1,7 @@
|
|||
; RUN: llc -mtriple=x86_64-- -O0 -debug-pass=Structure < %s -o /dev/null 2>&1 | FileCheck %s
|
||||
; When EXPENSIVE_CHECKS are enabled, the machine verifier appears between each
|
||||
; pass. Ignore it with 'grep -v'.
|
||||
; RUN: llc -mtriple=x86_64-- -O0 -debug-pass=Structure < %s -o /dev/null 2>&1 \
|
||||
; RUN: | grep -v 'Verify generated machine code' | FileCheck %s
|
||||
|
||||
; REQUIRES: asserts
|
||||
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
; RUN: llc -mtriple=x86_64-- -O3 -debug-pass=Structure < %s -o /dev/null 2>&1 | FileCheck %s
|
||||
; When EXPENSIVE_CHECKS are enabled, the machine verifier appears between each
|
||||
; pass. Ignore it with 'grep -v'.
|
||||
; RUN: llc -mtriple=x86_64-- -O3 -debug-pass=Structure < %s -o /dev/null 2>&1 \
|
||||
; RUN: | grep -v 'Verify generated machine code' | FileCheck %s
|
||||
|
||||
; REQUIRES: asserts
|
||||
|
||||
|
|
Loading…
Reference in New Issue