[llvm-commits] [llvm] r76802 - /llvm/trunk/test/CodeGen/X86/legalizedag_vec.ll
Dan Gohman
gohman at apple.com
Wed Jul 22 15:02:42 PDT 2009
Author: djg
Date: Wed Jul 22 17:02:42 2009
New Revision: 76802
URL: http://llvm.org/viewvc/llvm-project?rev=76802&view=rev
Log:
Make the grep line in this test more specific, to avoid
unintended matches.
Modified:
llvm/trunk/test/CodeGen/X86/legalizedag_vec.ll
Modified: llvm/trunk/test/CodeGen/X86/legalizedag_vec.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/legalizedag_vec.ll?rev=76802&r1=76801&r2=76802&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/legalizedag_vec.ll (original)
+++ llvm/trunk/test/CodeGen/X86/legalizedag_vec.ll Wed Jul 22 17:02:42 2009
@@ -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
+}
More information about the llvm-commits
mailing list