diff options
author | Vincent Lejeune <vljn@ovi.com> | 2013-09-04 19:53:22 +0000 |
---|---|---|
committer | Vincent Lejeune <vljn@ovi.com> | 2013-09-04 19:53:22 +0000 |
commit | 09c52189cedebc5f1a03a3e06bee5d82bf7e987c (patch) | |
tree | 47be7abfad2aea7b7be3a144915ab034daa1b3ef | |
parent | 4dc211ae399343312137f0391f5e7d235ab15f24 (diff) | |
download | external_llvm-09c52189cedebc5f1a03a3e06bee5d82bf7e987c.zip external_llvm-09c52189cedebc5f1a03a3e06bee5d82bf7e987c.tar.gz external_llvm-09c52189cedebc5f1a03a3e06bee5d82bf7e987c.tar.bz2 |
R600: Remove fmul.v4f32.ll test which is redundant with fmul.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189978 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/R600/fmul.v4f32.ll | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/test/CodeGen/R600/fmul.v4f32.ll b/test/CodeGen/R600/fmul.v4f32.ll deleted file mode 100644 index 7af6610..0000000 --- a/test/CodeGen/R600/fmul.v4f32.ll +++ /dev/null @@ -1,15 +0,0 @@ -;RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s - -;CHECK: MUL_IEEE * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}} -;CHECK: MUL_IEEE * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}} -;CHECK: MUL_IEEE * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}} -;CHECK: MUL_IEEE * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}} - -define void @test(<4 x float> addrspace(1)* %out, <4 x float> addrspace(1)* %in) { - %b_ptr = getelementptr <4 x float> addrspace(1)* %in, i32 1 - %a = load <4 x float> addrspace(1) * %in - %b = load <4 x float> addrspace(1) * %b_ptr - %result = fmul <4 x float> %a, %b - store <4 x float> %result, <4 x float> addrspace(1)* %out - ret void -} |