From 43c3db37f633cbed14d5ead201cfab7e67104605 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 15 Aug 2007 13:49:33 +0000 Subject: Convert tests using "grep -c ... | grep ..." to use the count script. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41100 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/aliases.ll | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/CodeGen/X86/aliases.ll') diff --git a/test/CodeGen/X86/aliases.ll b/test/CodeGen/X86/aliases.ll index 9bd6140..4a69eae 100644 --- a/test/CodeGen/X86/aliases.ll +++ b/test/CodeGen/X86/aliases.ll @@ -1,8 +1,8 @@ ; RUN: llvm-as < %s | \ ; RUN: llc -mtriple=i686-pc-linux-gnu -o %t -f -; RUN: grep -c set %t | grep 5 -; RUN: grep -c globl %t | grep 4 -; RUN: grep -c weak %t | grep 1 +; RUN: grep set %t | count 5 +; RUN: grep globl %t | count 4 +; RUN: grep weak %t | count 1 @bar = external global i32 @foo1 = alias i32* @bar -- cgit v1.1