summaryrefslogtreecommitdiff
path: root/libc/src/math/amdgpu/remquo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/math/amdgpu/remquo.cpp')
-rw-r--r--libc/src/math/amdgpu/remquo.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/libc/src/math/amdgpu/remquo.cpp b/libc/src/math/amdgpu/remquo.cpp
deleted file mode 100644
index 42c908e91c6c..000000000000
--- a/libc/src/math/amdgpu/remquo.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-//===-- Implementation of the GPU remquo function -------------------------===//
-//
-// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
-// See https://llvm.org/LICENSE.txt for license information.
-// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
-//
-//===----------------------------------------------------------------------===//
-
-#include "src/math/remquo.h"
-#include "src/__support/common.h"
-
-#include "declarations.h"
-#include "src/__support/macros/config.h"
-
-namespace LIBC_NAMESPACE_DECL {
-
-LLVM_LIBC_FUNCTION(double, remquo, (double x, double y, int *quo)) {
- int tmp;
- double r = __ocml_remquo_f64(x, y, (gpu::Private<int> *)&tmp);
- *quo = tmp;
- return r;
-}
-
-} // namespace LIBC_NAMESPACE_DECL