From 2b0ab5c370c006b71427473cce7e562623d4f1ee Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Fri, 1 Oct 2010 08:50:12 +0000 Subject: [PATCH] FileCheck-ize this test. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115303 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/mmx-punpckhdq.ll | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/CodeGen/X86/mmx-punpckhdq.ll b/test/CodeGen/X86/mmx-punpckhdq.ll index 2bd56433f7f..a7c0c05a864 100644 --- a/test/CodeGen/X86/mmx-punpckhdq.ll +++ b/test/CodeGen/X86/mmx-punpckhdq.ll @@ -1,8 +1,9 @@ -; RUN: llc < %s -march=x86 -mattr=+mmx,+sse2 | grep pextrd -; RUN: llc < %s -march=x86 -mattr=+mmx,+sse2 | grep punpckhdq | count 1 +; RUN: llc < %s -march=x86 -mattr=+mmx,+sse2 | FileCheck %s +; RUN: llc < %s -march=x86 -mattr=+mmx,+sse2 | FileCheck %s ; There are no MMX operations in bork; promoted to XMM. define void @bork(<1 x i64>* %x) { +; CHECK: pextrd entry: %tmp2 = load <1 x i64>* %x ; <<1 x i64>> [#uses=1] %tmp6 = bitcast <1 x i64> %tmp2 to <2 x i32> ; <<2 x i32>> [#uses=1] @@ -16,6 +17,7 @@ entry: ; pork uses MMX. define void @pork(x86_mmx* %x) { +; CHECK: punpckhdq entry: %tmp2 = load x86_mmx* %x ; [#uses=1] %tmp9 = tail call x86_mmx @llvm.x86.mmx.punpckhdq (x86_mmx %tmp2, x86_mmx %tmp2)