Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
comments
  • Loading branch information
hulxv committed Apr 13, 2026
commit b4cc8e4a14a4d4f369e025aad6905bc30f2d8ecb
1 change: 1 addition & 0 deletions libc/shared/math/dmulf128.h
Comment thread
hulxv marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

#ifdef LIBC_TYPES_HAS_FLOAT128

#include "shared/libc_common.h"
#include "src/__support/math/dmulf128.h"

namespace LIBC_NAMESPACE_DECL {
Expand Down
1 change: 1 addition & 0 deletions libc/shared/math/dmull.h
Comment thread
hulxv marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#ifndef LLVM_LIBC_SHARED_MATH_DMULL_H
#define LLVM_LIBC_SHARED_MATH_DMULL_H

#include "shared/libc_common.h"
#include "src/__support/math/dmull.h"

namespace LIBC_NAMESPACE_DECL {
Expand Down
2 changes: 2 additions & 0 deletions libc/src/__support/math/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -939,6 +939,7 @@ add_header_library(
libc.src.__support.FPUtil.multiply_add
libc.src.__support.macros.optimization
)

add_header_library(
dmulf128
HDRS
Expand All @@ -948,6 +949,7 @@ add_header_library(
libc.src.__support.FPUtil.generic.mul
libc.src.__support.macros.config
)

add_header_library(
Comment thread
hulxv marked this conversation as resolved.
dmull
HDRS
Expand Down
1 change: 0 additions & 1 deletion libc/src/__support/math/dmulf128.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
#include "src/__support/macros/config.h"

namespace LIBC_NAMESPACE_DECL {

namespace math {

LIBC_INLINE double dmulf128(float128 x, float128 y) {
Expand Down
1 change: 0 additions & 1 deletion libc/src/__support/math/dmull.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
#include "src/__support/macros/config.h"

namespace LIBC_NAMESPACE_DECL {

namespace math {

LIBC_INLINE double dmull(long double x, long double y) {
Expand Down
Loading