diff options
author | Tanya Lattner <tonic@nondot.org> | 2008-02-19 08:07:33 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2008-02-19 08:07:33 +0000 |
commit | cfab3da46e1e8e9ed4fafa018e0d28bb5913dde2 (patch) | |
tree | fb23c878019caf961242d6922d065dfae51fb7ca /test/CodeGen/PowerPC/vec_zero.ll | |
parent | 1459c5d8e1fe827a7e4b6d790452b4b64dade634 (diff) | |
download | external_llvm-cfab3da46e1e8e9ed4fafa018e0d28bb5913dde2.tar.gz external_llvm-cfab3da46e1e8e9ed4fafa018e0d28bb5913dde2.tar.bz2 external_llvm-cfab3da46e1e8e9ed4fafa018e0d28bb5913dde2.zip |
Remove llvm-upgrade and update tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47325 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/vec_zero.ll')
-rw-r--r-- | test/CodeGen/PowerPC/vec_zero.ll | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/test/CodeGen/PowerPC/vec_zero.ll b/test/CodeGen/PowerPC/vec_zero.ll index c845c0e8db..8d06a7d94d 100644 --- a/test/CodeGen/PowerPC/vec_zero.ll +++ b/test/CodeGen/PowerPC/vec_zero.ll @@ -1,8 +1,9 @@ -; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 -mcpu=g5 | grep vxor +; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g5 | grep vxor -void %foo(<4 x float> *%P) { - %T = load <4 x float> * %P - %S = add <4 x float> zeroinitializer, %T - store <4 x float> %S, <4 x float>* %P - ret void +define void @foo(<4 x float>* %P) { + %T = load <4 x float>* %P ; <<4 x float>> [#uses=1] + %S = add <4 x float> zeroinitializer, %T ; <<4 x float>> [#uses=1] + store <4 x float> %S, <4 x float>* %P + ret void } + |