From e51d4df4b287b3c56d471cbc5a956dacf2eb0dc3 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Thu, 12 Mar 2020 08:33:54 -0400 Subject: [PATCH] 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.) --- llvm/test/CodeGen/X86/statepoint-stackmap-size.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/CodeGen/X86/statepoint-stackmap-size.ll b/llvm/test/CodeGen/X86/statepoint-stackmap-size.ll index d4a8a04..a8757f3 100644 --- a/llvm/test/CodeGen/X86/statepoint-stackmap-size.ll +++ b/llvm/test/CodeGen/X86/statepoint-stackmap-size.ll @@ -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 -- 2.7.4