diff options
| author | Dan Gohman <gohman@apple.com> | 2009-07-22 22:02:42 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-07-22 22:02:42 +0000 |
| commit | c51029325160b83d7cf5408626682be318f8545a (patch) | |
| tree | 71b2b4ac61e8e013f25fbbd7e2d0e3605c05b1c5 | |
| parent | e88680e33e52b511ec26408803bca8f3cd3597e8 (diff) | |
| download | bcm5719-llvm-c51029325160b83d7cf5408626682be318f8545a.tar.gz bcm5719-llvm-c51029325160b83d7cf5408626682be318f8545a.zip | |
Make the grep line in this test more specific, to avoid
unintended matches.
llvm-svn: 76802
| -rw-r--r-- | llvm/test/CodeGen/X86/legalizedag_vec.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/legalizedag_vec.ll b/llvm/test/CodeGen/X86/legalizedag_vec.ll index 97654b201ba..ef4b0d4d73f 100644 --- a/llvm/test/CodeGen/X86/legalizedag_vec.ll +++ b/llvm/test/CodeGen/X86/legalizedag_vec.ll @@ -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 +} |

