From 8e7401e52f3938a775819e8a6de095ecf7dbad92 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 12 Apr 2006 16:49:16 +0000 Subject: [PATCH] new testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27608 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/PowerPC/vxor-canonicalize.ll | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/CodeGen/PowerPC/vxor-canonicalize.ll diff --git a/test/CodeGen/PowerPC/vxor-canonicalize.ll b/test/CodeGen/PowerPC/vxor-canonicalize.ll new file mode 100644 index 00000000000..b14d85a9d74 --- /dev/null +++ b/test/CodeGen/PowerPC/vxor-canonicalize.ll @@ -0,0 +1,9 @@ +; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g5 | grep vxor | wc -l | grep 1 +; There should be exactly one vxor here, not two. + +void %test(<4 x float>* %P1, <4 x int>* %P2) { + store <4 x float> zeroinitializer, <4 x float>* %P1 + store <4 x int> zeroinitializer, <4 x int>* %P2 + ret void +} + -- 2.34.1