[libc-commits] [libc] [libc] Fix leftoever debug in 'f16fma' function (PR #100638)
Joseph Huber via libc-commits
libc-commits at lists.llvm.org
Thu Jul 25 12:20:09 PDT 2024
https://github.com/jhuber6 created https://github.com/llvm/llvm-project/pull/100638
Summary:
This caused issues on NVPTX
>From fc44a57eff81d9e0762c44c7fcdf46efba71294c Mon Sep 17 00:00:00 2001
From: Joseph Huber <huberjn at outlook.com>
Date: Thu, 25 Jul 2024 14:19:24 -0500
Subject: [PATCH] [libc] Fix leftoever debug in 'f16fma' function
Summary:
This caused issues on NVPTX
---
libc/src/math/generic/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libc/src/math/generic/CMakeLists.txt b/libc/src/math/generic/CMakeLists.txt
index 7280add7c8bb0..53155c6bbd84b 100644
--- a/libc/src/math/generic/CMakeLists.txt
+++ b/libc/src/math/generic/CMakeLists.txt
@@ -4231,7 +4231,7 @@ add_entrypoint_object(
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.fma
COMPILE_OPTIONS
- -O0 -ggdb3
+ -O3
)
add_entrypoint_object(
More information about the libc-commits
mailing list