summaryrefslogtreecommitdiffstats
path: root/test/CodeGenOpenCL/builtins-r600.cl
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2016-07-15 21:33:06 +0000
committerMatt Arsenault <Matthew.Arsenault@amd.com>2016-07-15 21:33:06 +0000
commit571b15e0389df587bdd76d73be438ffee7280e89 (patch)
tree6948126692a9551e84106beb761f59f85430e2a3 /test/CodeGenOpenCL/builtins-r600.cl
parent34f54fad6b3739eebd879572dcc0261dc7e52eda (diff)
AMDGPU: Remove legacy ldexp builtin
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@275623 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenOpenCL/builtins-r600.cl')
-rw-r--r--test/CodeGenOpenCL/builtins-r600.cl16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/CodeGenOpenCL/builtins-r600.cl b/test/CodeGenOpenCL/builtins-r600.cl
index 0951ff8182..027a54a6bc 100644
--- a/test/CodeGenOpenCL/builtins-r600.cl
+++ b/test/CodeGenOpenCL/builtins-r600.cl
@@ -17,22 +17,6 @@ void test_recipsqrt_ieee_f64(global double* out, double a)
}
#endif
-// CHECK-LABEL: @test_legacy_ldexp_f32
-// CHECK: call float @llvm.AMDGPU.ldexp.f32
-void test_legacy_ldexp_f32(global float* out, float a, int b)
-{
- *out = __builtin_amdgpu_ldexpf(a, b);
-}
-
-#if cl_khr_fp64
-// XCHECK-LABEL: @test_legacy_ldexp_f64
-// XCHECK: call double @llvm.AMDGPU.ldexp.f64
-void test_legacy_ldexp_f64(global double* out, double a, int b)
-{
- *out = __builtin_amdgpu_ldexp(a, b);
-}
-#endif
-
// CHECK-LABEL: @test_implicitarg_ptr
// CHECK: call i8 addrspace(7)* @llvm.r600.implicitarg.ptr()
void test_implicitarg_ptr(__attribute__((address_space(7))) unsigned char ** out)