[PATCH] D154765: APFloat: Add some missing function declarations
Tom Stellard via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 10 13:58:01 PDT 2023
tstellar updated this revision to Diff 538815.
tstellar marked an inline comment as done.
tstellar added a comment.
Move declarations up to be next to the hash_value declaration.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D154765/new/
https://reviews.llvm.org/D154765
Files:
llvm/include/llvm/ADT/APFloat.h
Index: llvm/include/llvm/ADT/APFloat.h
===================================================================
--- llvm/include/llvm/ADT/APFloat.h
+++ llvm/include/llvm/ADT/APFloat.h
@@ -753,6 +753,8 @@
};
hash_code hash_value(const DoubleAPFloat &Arg);
+DoubleAPFloat scalbn(const DoubleAPFloat &Arg, int Exp, IEEEFloat::roundingMode RM);
+DoubleAPFloat frexp(const DoubleAPFloat &X, int &Exp, IEEEFloat::roundingMode);
} // End detail namespace
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D154765.538815.patch
Type: text/x-patch
Size: 452 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230710/194daeac/attachment.bin>
More information about the llvm-commits
mailing list