Make the grep line in this test more specific, to avoid
authorDan Gohman <gohman@apple.com>
Wed, 22 Jul 2009 22:02:42 +0000 (22:02 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 22 Jul 2009 22:02:42 +0000 (22:02 +0000)
unintended matches.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76802 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/legalizedag_vec.ll

index 97654b201ba01624f822b3fe9ee26982e2f8fbcc..ef4b0d4d73f201380aca32315e81a4d529a400bf 100644 (file)
@@ -1,5 +1,5 @@
 ; RUN: llvm-as < %s | llc -march=x86 -mattr=sse2 -disable-mmx -o %t -f
-; RUN: grep divdi3  %t | count 2
+; RUN: grep {call.*divdi3}  %t | count 2
 
 
 ; Test case for r63760 where we generate a legalization assert that an illegal
@@ -12,4 +12,4 @@
 define <2 x i64> @test_long_div(<2 x i64> %num, <2 x i64> %div) {
   %div.r = sdiv <2 x i64> %num, %div
   ret <2 x i64>  %div.r
-}                                     
\ No newline at end of file
+}