diff options
author | Michael Gottesman <mgottesman@apple.com> | 2013-07-27 21:49:19 +0000 |
---|---|---|
committer | Michael Gottesman <mgottesman@apple.com> | 2013-07-27 21:49:19 +0000 |
commit | 7ffc854002282b0a6fd018d967a6def971dc341e (patch) | |
tree | 7678f228b58df9a18b55899b2240b983da938ca1 /include | |
parent | 9df33cbbab9e11fd4528566c7b4f303ac1d99ead (diff) | |
download | external_llvm-7ffc854002282b0a6fd018d967a6def971dc341e.zip external_llvm-7ffc854002282b0a6fd018d967a6def971dc341e.tar.gz external_llvm-7ffc854002282b0a6fd018d967a6def971dc341e.tar.bz2 |
[APFloat] Removed nextafter from missing operations since it is implemented in APFloat::next.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187312 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/ADT/APFloat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/APFloat.h b/include/llvm/ADT/APFloat.h index 4ccb96a..43a7866 100644 --- a/include/llvm/ADT/APFloat.h +++ b/include/llvm/ADT/APFloat.h @@ -117,7 +117,7 @@ enum lostFraction { // Example of truncated bits: /// New formats: x87 in single and double precision mode (IEEE apart from /// extended exponent range) (hard). /// -/// New operations: sqrt, IEEE remainder, C90 fmod, nextafter, nexttoward. +/// New operations: sqrt, IEEE remainder, C90 fmod, nexttoward. /// class APFloat { public: |