[llvm] r187312 - [APFloat] Removed nextafter from missing operations since it is implemented in APFloat::next.
Michael Gottesman
mgottesman at apple.com
Sat Jul 27 14:49:19 PDT 2013
Author: mgottesman
Date: Sat Jul 27 16:49:19 2013
New Revision: 187312
URL: http://llvm.org/viewvc/llvm-project?rev=187312&view=rev
Log:
[APFloat] Removed nextafter from missing operations since it is implemented in APFloat::next.
Modified:
llvm/trunk/include/llvm/ADT/APFloat.h
Modified: llvm/trunk/include/llvm/ADT/APFloat.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/APFloat.h?rev=187312&r1=187311&r2=187312&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/APFloat.h (original)
+++ llvm/trunk/include/llvm/ADT/APFloat.h Sat Jul 27 16:49:19 2013
@@ -117,7 +117,7 @@ enum lostFraction { // Example of trunca
/// 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:
More information about the llvm-commits
mailing list