From: Bruno Ricci Date: Thu, 15 Nov 2018 14:30:18 +0000 (+0000) Subject: [AST][NFC] Re-add comment in BinaryOperator which was removed by r346954 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed1a7dbfe64c086cae79fe6cb63798230525f449;p=clang [AST][NFC] Re-add comment in BinaryOperator which was removed by r346954 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@346957 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Stmt.h b/include/clang/AST/Stmt.h index cd2effb448..890a02948a 100644 --- a/include/clang/AST/Stmt.h +++ b/include/clang/AST/Stmt.h @@ -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;