Skip to content

Commit

Permalink
APFloat: Add some missing function declarations
Browse files Browse the repository at this point in the history
Theses functions were added in fd1e5aa
without a declaration.

Reviewed By: nikic

Differential Revision: https://reviews.llvm.org/D154765
  • Loading branch information
tstellar committed Nov 7, 2023
1 parent 7c85086 commit 466dc5c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions llvm/include/llvm/ADT/APFloat.h
Original file line number Diff line number Diff line change
Expand Up @@ -770,6 +770,8 @@ class DoubleAPFloat final : public APFloatBase {
};

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

Expand Down

0 comments on commit 466dc5c

Please sign in to comment.