diff options
author | Dan Gohman <gohman@apple.com> | 2008-08-11 20:10:41 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-08-11 20:10:41 +0000 |
commit | 00f19b65421b6517a7c856351384909b00e88f5f (patch) | |
tree | 26afa558d6510d780ed33dd9399936a5bc9a63f6 | |
parent | 8cea8ff34c7fb7a64b6fd247b9db0d097d1ffeea (diff) |
Improve the grep commands for this test to be tolerant of ABI
differences, and to be more specific.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54648 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/X86/extractps.ll | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/CodeGen/X86/extractps.ll b/test/CodeGen/X86/extractps.ll index eb043f3b43..0c20cb3694 100644 --- a/test/CodeGen/X86/extractps.ll +++ b/test/CodeGen/X86/extractps.ll @@ -1,4 +1,7 @@ -; RUN: llvm-as < %s | llc -mcpu=penryn | grep mov | count 1 +; RUN: llvm-as < %s | llc -mcpu=penryn > %t +; not grep movd %t +; not grep movss %t +; grep {extractps \\$0, %xmm0, } %t ; PR2647 external global float, align 16 ; <float*>:0 [#uses=2] |