[libc-commits] [libc] [libc][stdfix] Implement `idivfx` functions in LLVM libc (PR #133005)
via libc-commits
libc-commits at lists.llvm.org
Fri Apr 18 16:09:38 PDT 2025
================
@@ -0,0 +1,91 @@
+//===-- Utility class to test idivfx functions ------------------*- C++ -*-===//
+//
+// 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 "test/UnitTest/Test.h"
+
+#include "src/__support/fixed_point/fx_rep.h"
+#include "src/__support/macros/sanitizer.h"
+
+#include <signal.h>
----------------
lntue wrote:
Use signal macros proxy header.
https://github.com/llvm/llvm-project/pull/133005
More information about the libc-commits
mailing list