[llvm] r222267 - Fix an inaccurate comment

Justin Bogner mail at justinbogner.com
Tue Nov 18 14:17:30 PST 2014


Author: bogner
Date: Tue Nov 18 16:17:30 2014
New Revision: 222267

URL: http://llvm.org/viewvc/llvm-project?rev=222267&view=rev
Log:
Fix an inaccurate comment

Modified:
    llvm/trunk/include/llvm/Support/Compiler.h

Modified: llvm/trunk/include/llvm/Support/Compiler.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Compiler.h?rev=222267&r1=222266&r2=222267&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/Compiler.h (original)
+++ llvm/trunk/include/llvm/Support/Compiler.h Tue Nov 18 16:17:30 2014
@@ -75,8 +75,7 @@
 /// \brief Does the compiler support r-value reference *this?
 ///
 /// Sadly, this is separate from just r-value reference support because GCC
-/// implemented everything but this thus far. No release of GCC yet has support
-/// for this feature so it is enabled with Clang only.
+/// implemented this later than everything else.
 #if __has_feature(cxx_rvalue_references) || LLVM_GNUC_PREREQ(4, 8, 1)
 #define LLVM_HAS_RVALUE_REFERENCE_THIS 1
 #else





More information about the llvm-commits mailing list