summaryrefslogtreecommitdiff
path: root/src/stdfix/abslr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdfix/abslr.cpp')
-rw-r--r--src/stdfix/abslr.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/stdfix/abslr.cpp b/src/stdfix/abslr.cpp
new file mode 100644
index 000000000000..0f8969510a50
--- /dev/null
+++ b/src/stdfix/abslr.cpp
@@ -0,0 +1,19 @@
+//===-- Implementation of abslr 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 "abslr.h"
+#include "src/__support/common.h"
+#include "src/__support/fixed_point/fx_bits.h"
+
+namespace LIBC_NAMESPACE {
+
+LLVM_LIBC_FUNCTION(long fract, abslr, (long fract x)) {
+ return fixed_point::abs(x);
+}
+
+} // namespace LIBC_NAMESPACE