diff options
author | Owen Anderson <resistor@mac.com> | 2013-02-07 07:01:54 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2013-02-07 07:01:54 +0000 |
commit | bfd2ce96c74f88c0495106a5a14375383f11323c (patch) | |
tree | c51697fcdf47e3b1c5084cc9692131615fa46330 /llvm/test/Transforms/ConstProp | |
parent | 7799d15f6eabebd28a7a5e357d172aa3437adb35 (diff) | |
download | bcm5719-llvm-bfd2ce96c74f88c0495106a5a14375383f11323c.tar.gz bcm5719-llvm-bfd2ce96c74f88c0495106a5a14375383f11323c.zip |
Remove this testcase until I can figure out how to properly conditionalize it.
llvm-svn: 174591
Diffstat (limited to 'llvm/test/Transforms/ConstProp')
-rw-r--r-- | llvm/test/Transforms/ConstProp/half.ll | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/llvm/test/Transforms/ConstProp/half.ll b/llvm/test/Transforms/ConstProp/half.ll deleted file mode 100644 index dcd98d45f9f..00000000000 --- a/llvm/test/Transforms/ConstProp/half.ll +++ /dev/null @@ -1,43 +0,0 @@ -; RUN: opt -constprop -S < %s | FileCheck %s -; XFAIL: win32, freebsd8.2, mingw32 - -; CHECK: fabs_call -define half @fabs_call() { -; CHECK: ret half 0xH5140 - %x = call half @llvm.fabs.f16(half -42.0) - ret half %x -} -declare half @llvm.fabs.f16(half %x) - -; CHECK: exp_call -define half @exp_call() { -; CHECK: ret half 0xH4170 - %x = call half @llvm.exp.f16(half 1.0) - ret half %x -} -declare half @llvm.exp.f16(half %x) - -; CHECK: sqrt_call -define half @sqrt_call() { -; CHECK: ret half 0xH4000 - %x = call half @llvm.sqrt.f16(half 4.0) - ret half %x -} -declare half @llvm.sqrt.f16(half %x) - -; CHECK: floor_call -define half @floor_call() { -; CHECK: ret half 0xH4000 - %x = call half @llvm.floor.f16(half 2.5) - ret half %x -} -declare half @llvm.floor.f16(half %x) - -; CHECK: pow_call -define half @pow_call() { -; CHECK: ret half 0xH4400 - %x = call half @llvm.pow.f16(half 2.0, half 2.0) - ret half %x -} -declare half @llvm.pow.f16(half %x, half %y) - |