summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/scalar-min-max-fill-operand.ll
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2011-03-16 13:52:38 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2011-03-16 13:52:38 +0000
commitddbfbcf72e72d18b5aa149f37227961eac828030 (patch)
tree59fb4f21e535731a21840d1183302a263ccdaf2b /test/CodeGen/X86/scalar-min-max-fill-operand.ll
parent4491aa49b3528981643facb4872f2a2ba6c5745e (diff)
downloadllvm-ddbfbcf72e72d18b5aa149f37227961eac828030.tar.gz
llvm-ddbfbcf72e72d18b5aa149f37227961eac828030.tar.bz2
llvm-ddbfbcf72e72d18b5aa149f37227961eac828030.tar.xz
test/CodeGen/X86: FileCheck-ize and add explicit -mtriple=x86_64-linux. They are useless to Win64 target.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127732 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/scalar-min-max-fill-operand.ll')
-rw-r--r--test/CodeGen/X86/scalar-min-max-fill-operand.ll13
1 files changed, 10 insertions, 3 deletions
diff --git a/test/CodeGen/X86/scalar-min-max-fill-operand.ll b/test/CodeGen/X86/scalar-min-max-fill-operand.ll
index fe40758d8e..2f90932c0e 100644
--- a/test/CodeGen/X86/scalar-min-max-fill-operand.ll
+++ b/test/CodeGen/X86/scalar-min-max-fill-operand.ll
@@ -1,6 +1,13 @@
-; RUN: llc < %s -march=x86-64 | grep min | count 1
-; RUN: llc < %s -march=x86-64 | grep max | count 1
-; RUN: llc < %s -march=x86-64 | grep mov | count 2
+; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s
+; CHECK-NOT: {{(min|max|mov)}}
+; CHECK: mov
+; CHECK-NOT: {{(min|max|mov)}}
+; CHECK: min
+; CHECK-NOT: {{(min|max|mov)}}
+; CHECK: mov
+; CHECK-NOT: {{(min|max|mov)}}
+; CHECK: max
+; CHECK-NOT: {{(min|max|mov)}}
declare float @bar()