From: Justin Bogner Date: Tue, 18 Nov 2014 22:17:30 +0000 (+0000) Subject: Fix an inaccurate comment X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4c8e8ec86366053f0758318edbe7958a950269ca;p=platform%2Fupstream%2Fllvm.git Fix an inaccurate comment llvm-svn: 222267 --- diff --git a/llvm/include/llvm/Support/Compiler.h b/llvm/include/llvm/Support/Compiler.h index 97f6291..d008fec 100644 --- a/llvm/include/llvm/Support/Compiler.h +++ b/llvm/include/llvm/Support/Compiler.h @@ -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