Skip to content

Commit 466dc5c

Browse files
committed
APFloat: Add some missing function declarations
Theses functions were added in fd1e5aa without a declaration. Reviewed By: nikic Differential Revision: https://reviews.llvm.org/D154765
1 parent 7c85086 commit 466dc5c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

llvm/include/llvm/ADT/APFloat.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -770,6 +770,8 @@ class DoubleAPFloat final : public APFloatBase {
770770
};
771771

772772
hash_code hash_value(const DoubleAPFloat &Arg);
773+
DoubleAPFloat scalbn(const DoubleAPFloat &Arg, int Exp, IEEEFloat::roundingMode RM);
774+
DoubleAPFloat frexp(const DoubleAPFloat &X, int &Exp, IEEEFloat::roundingMode);
773775

774776
} // End detail namespace
775777

0 commit comments

Comments
 (0)