summaryrefslogtreecommitdiff
path: root/src/math/gpu/lroundf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/gpu/lroundf.cpp')
-rw-r--r--src/math/gpu/lroundf.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/math/gpu/lroundf.cpp b/src/math/gpu/lroundf.cpp
deleted file mode 100644
index 2a6fe7200d8c..000000000000
--- a/src/math/gpu/lroundf.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-//===-- Implementation of the GPU lroundf 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/lroundf.h"
-#include "src/__support/common.h"
-
-namespace LIBC_NAMESPACE {
-
-LLVM_LIBC_FUNCTION(long, lroundf, (float x)) { return __builtin_lroundf(x); }
-
-} // namespace LIBC_NAMESPACE