[PATCH] D29797: Update test/CodeGen/X86/sse-align-10.ll to use FileCheck instead of grep
David L. Jones via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 9 17:47:08 PST 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL294686: Update test/CodeGen/X86/sse-align-10.ll to use FileCheck instead of grep (authored by dlj).
Changed prior to commit:
https://reviews.llvm.org/D29797?vs=87907&id=87926#toc
Repository:
rL LLVM
https://reviews.llvm.org/D29797
Files:
llvm/trunk/test/CodeGen/X86/sse-align-10.ll
Index: llvm/trunk/test/CodeGen/X86/sse-align-10.ll
===================================================================
--- llvm/trunk/test/CodeGen/X86/sse-align-10.ll
+++ llvm/trunk/test/CodeGen/X86/sse-align-10.ll
@@ -1,6 +1,9 @@
-; RUN: llc < %s -march=x86-64 | grep movups | count 1
+; RUN: llc < %s -march=x86-64 | FileCheck %s
define <2 x i64> @bar(<2 x i64>* %p) nounwind {
+; CHECK-LABEL: bar:
+; CHECK: movups
+; CHECK-NOT: movups
%t = load <2 x i64>, <2 x i64>* %p, align 8
ret <2 x i64> %t
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D29797.87926.patch
Type: text/x-patch
Size: 512 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170210/9ae25a44/attachment.bin>
More information about the llvm-commits
mailing list