[libc-commits] [libc] b902b31 - [libc] Fix invalid include for SqrtLongDouble.h
Guillaume Chatelet via libc-commits
libc-commits at lists.llvm.org
Fri Dec 3 08:14:54 PST 2021
Author: Guillaume Chatelet
Date: 2021-12-03T16:13:59Z
New Revision: b902b314ffa7ee3a13e2b1cfcfe28a946904b2ce
URL: https://github.com/llvm/llvm-project/commit/b902b314ffa7ee3a13e2b1cfcfe28a946904b2ce
DIFF: https://github.com/llvm/llvm-project/commit/b902b314ffa7ee3a13e2b1cfcfe28a946904b2ce.diff
LOG: [libc] Fix invalid include for SqrtLongDouble.h
Added:
Modified:
libc/src/__support/FPUtil/x86_64/SqrtLongDouble.h
Removed:
################################################################################
diff --git a/libc/src/__support/FPUtil/x86_64/SqrtLongDouble.h b/libc/src/__support/FPUtil/x86_64/SqrtLongDouble.h
index e07af32345de4..4c0e2f1c694e5 100644
--- a/libc/src/__support/FPUtil/x86_64/SqrtLongDouble.h
+++ b/libc/src/__support/FPUtil/x86_64/SqrtLongDouble.h
@@ -15,10 +15,9 @@
#error "Invalid include"
#endif
-#include "FPBits.h"
-#include "Sqrt.h"
-
#include "src/__support/CPP/TypeTraits.h"
+#include "src/__support/FPUtil/FPBits.h"
+#include "src/__support/FPUtil/Sqrt.h"
namespace __llvm_libc {
namespace fputil {
More information about the libc-commits
mailing list