r346957 - [AST][NFC] Re-add comment in BinaryOperator which was removed by r346954

Bruno Ricci via cfe-commits cfe-commits at lists.llvm.org
Thu Nov 15 06:30:18 PST 2018


Author: brunoricci
Date: Thu Nov 15 06:30:18 2018
New Revision: 346957

URL: http://llvm.org/viewvc/llvm-project?rev=346957&view=rev
Log:
[AST][NFC] Re-add comment in BinaryOperator which was removed by r346954


Modified:
    cfe/trunk/include/clang/AST/Stmt.h

Modified: cfe/trunk/include/clang/AST/Stmt.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Stmt.h?rev=346957&r1=346956&r2=346957&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Stmt.h (original)
+++ cfe/trunk/include/clang/AST/Stmt.h Thu Nov 15 06:30:18 2018
@@ -448,6 +448,9 @@ protected:
     unsigned : NumExprBits;
 
     unsigned Opc : 6;
+
+    /// This is only meaningful for operations on floating point
+    /// types and 0 otherwise.
     unsigned FPFeatures : 3;
 
     SourceLocation OpLoc;




More information about the cfe-commits mailing list