[libc-commits] [libc] 888ae90 - [libc] Fix leftoever debug in 'f16fma' function (#100638)

via libc-commits libc-commits at lists.llvm.org
Thu Jul 25 13:25:09 PDT 2024


Author: Joseph Huber
Date: 2024-07-25T15:25:06-05:00
New Revision: 888ae9066da9c9758c03e839be6cefb3246a9b1c

URL: https://github.com/llvm/llvm-project/commit/888ae9066da9c9758c03e839be6cefb3246a9b1c
DIFF: https://github.com/llvm/llvm-project/commit/888ae9066da9c9758c03e839be6cefb3246a9b1c.diff

LOG: [libc] Fix leftoever debug in 'f16fma' function (#100638)

Summary:
This caused issues on NVPTX

Added: 
    

Modified: 
    libc/src/math/generic/CMakeLists.txt

Removed: 
    


################################################################################
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