forked from OSchip/llvm-project
Use `grep -F` instead of deprecated fgrep.
(In addition to the deprecation bit, this is useful on Windows where people might have grep but not fgrep.)
This commit is contained in:
parent
d748e759d5
commit
e51d4df4b2
|
@ -1,4 +1,4 @@
|
|||
; RUN: llc -verify-machineinstrs < %s | fgrep -A 10000 .llvm_stackmaps | wc -l | FileCheck %s
|
||||
; RUN: llc -verify-machineinstrs < %s | grep -F -A 10000 .llvm_stackmaps | wc -l | FileCheck %s
|
||||
|
||||
; Without removal of duplicate entries, the size is 62 lines
|
||||
; CHECK: 50
|
||||
|
|
Loading…
Reference in New Issue