[libc-commits] [libc] 3210bce - [libc][math] updated functionspec subf128 (#102372)

via libc-commits libc-commits at lists.llvm.org
Wed Aug 7 14:29:12 PDT 2024


Author: aaryanshukla
Date: 2024-08-07T14:29:08-07:00
New Revision: 3210bce90f8678d52ea67f812bfe81d1c9de7597

URL: https://github.com/llvm/llvm-project/commit/3210bce90f8678d52ea67f812bfe81d1c9de7597
DIFF: https://github.com/llvm/llvm-project/commit/3210bce90f8678d52ea67f812bfe81d1c9de7597.diff

LOG: [libc][math] updated functionspec subf128 (#102372)

Added: 
    

Modified: 
    libc/spec/llvm_libc_ext.td

Removed: 
    


################################################################################
diff  --git a/libc/spec/llvm_libc_ext.td b/libc/spec/llvm_libc_ext.td
index 52223128d507e..5ae8d53326336 100644
--- a/libc/spec/llvm_libc_ext.td
+++ b/libc/spec/llvm_libc_ext.td
@@ -98,7 +98,7 @@ def LLVMLibcExt : StandardSpec<"llvm_libc_ext"> {
 
           GuardedFunctionSpec<"fsqrtf128", RetValSpec<FloatType>, [ArgSpec<Float128Type>], "LIBC_TYPES_HAS_FLOAT128">,
 
-          FunctionSpec<"fsubf128", RetValSpec<FloatType>, [ArgSpec<Float128Type>, ArgSpec<Float128Type>], "LIBC_TYPES_HAS_FLOAT128">,
+          GuardedFunctionSpec<"fsubf128", RetValSpec<FloatType>, [ArgSpec<Float128Type>, ArgSpec<Float128Type>], "LIBC_TYPES_HAS_FLOAT128">,
 
           FunctionSpec<"powi", RetValSpec<DoubleType>, [ArgSpec<DoubleType>, ArgSpec<IntType>]>,
           FunctionSpec<"powif", RetValSpec<FloatType>, [ArgSpec<FloatType>, ArgSpec<IntType>]>,


        


More information about the libc-commits mailing list