summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/test-interp-vec-arithm_float.ll
diff options
context:
space:
mode:
authorNadav Rotem <nrotem@apple.com>2013-04-12 22:02:26 +0000
committerNadav Rotem <nrotem@apple.com>2013-04-12 22:02:26 +0000
commit0fda0f397621a6b50812622a73f0991768662491 (patch)
treef5f613c9463db4810bd618c7fca4ffc5eadaa9e4 /test/ExecutionEngine/test-interp-vec-arithm_float.ll
parent6ac927860610d134f2a35119abff6eb2d81846a1 (diff)
downloadllvm-0fda0f397621a6b50812622a73f0991768662491.tar.gz
llvm-0fda0f397621a6b50812622a73f0991768662491.tar.bz2
llvm-0fda0f397621a6b50812622a73f0991768662491.tar.xz
Revert r179409 because it caused some warnings and some of the build bots fail.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179418 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine/test-interp-vec-arithm_float.ll')
-rw-r--r--test/ExecutionEngine/test-interp-vec-arithm_float.ll20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/ExecutionEngine/test-interp-vec-arithm_float.ll b/test/ExecutionEngine/test-interp-vec-arithm_float.ll
deleted file mode 100644
index d7f4ac90a9..0000000000
--- a/test/ExecutionEngine/test-interp-vec-arithm_float.ll
+++ /dev/null
@@ -1,20 +0,0 @@
-; RUN: %lli %s > /dev/null
-
-
-define i32 @main() {
-
- %A_float = fadd <4 x float> <float 0.0, float 11.0, float 22.0, float 33.0>, <float 44.0, float 55.0, float 66.0, float 77.0>
- %B_float = fsub <4 x float> %A_float, <float 88.0, float 99.0, float 100.0, float 111.0>
- %C_float = fmul <4 x float> %B_float, %B_float
- %D_float = fdiv <4 x float> %C_float, %B_float
- %E_float = frem <4 x float> %D_float, %A_float
-
-
- %A_double = fadd <3 x double> <double 0.0, double 111.0, double 222.0>, <double 444.0, double 555.0, double 665.0>
- %B_double = fsub <3 x double> %A_double, <double 888.0, double 999.0, double 1001.0>
- %C_double = fmul <3 x double> %B_double, %B_double
- %D_double = fdiv <3 x double> %C_double, %B_double
- %E_double = frem <3 x double> %D_double, %A_double
-
- ret i32 0
-}