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 | aae69c0a1da441b5cc4a014185f22e92515ba85f (patch) | |
tree | 1835cfbddcf51a273a3b39563b1d635cde515618 /llvm/include | |
parent | 437c9f92bc9af0c782ec0aaa89843d63bbcd9717 (diff) | |
download | bcm5719-llvm-aae69c0a1da441b5cc4a014185f22e92515ba85f.tar.gz bcm5719-llvm-aae69c0a1da441b5cc4a014185f22e92515ba85f.zip |
[APFloat] Removed nextafter from missing operations since it is implemented in APFloat::next.
llvm-svn: 187312
Diffstat (limited to 'llvm/include')
-rw-r--r-- | llvm/include/llvm/ADT/APFloat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/ADT/APFloat.h b/llvm/include/llvm/ADT/APFloat.h index 4ccb96ab765..43a78660bf1 100644 --- a/llvm/include/llvm/ADT/APFloat.h +++ b/llvm/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: |