@@ -309,7 +309,7 @@ class Expr : public ValueStmt {
309309 MLV_DuplicateVectorComponents,
310310 MLV_DuplicateMatrixComponents,
311311 MLV_InvalidExpression,
312- MLV_LValueCast, // Specialized form of MLV_InvalidExpression.
312+ MLV_LValueCast, // Specialized form of MLV_InvalidExpression.
313313 MLV_IncompleteType,
314314 MLV_ConstQualified,
315315 MLV_ConstQualifiedField,
@@ -342,17 +342,17 @@ class Expr : public ValueStmt {
342342 enum Kinds {
343343 CL_LValue,
344344 CL_XValue,
345- CL_Function, // Functions cannot be lvalues in C.
346- CL_Void, // Void cannot be an lvalue in C.
345+ CL_Function, // Functions cannot be lvalues in C.
346+ CL_Void, // Void cannot be an lvalue in C.
347347 CL_AddressableVoid, // Void expression whose address can be taken in C.
348348 CL_DuplicateVectorComponents, // A vector shuffle with dupes.
349349 CL_DuplicateMatrixComponents, // A matrix shuffle with dupes.
350350 CL_MemberFunction, // An expression referring to a member function
351351 CL_SubObjCPropertySetting,
352- CL_ClassTemporary, // A temporary of class type, or subobject thereof.
353- CL_ArrayTemporary, // A temporary of array type.
352+ CL_ClassTemporary, // A temporary of class type, or subobject thereof.
353+ CL_ArrayTemporary, // A temporary of array type.
354354 CL_ObjCMessageRValue, // ObjC message is an rvalue
355- CL_PRValue // A prvalue for any other reason, of any other type
355+ CL_PRValue // A prvalue for any other reason, of any other type
356356 };
357357 // / The results of modification testing.
358358 enum ModifiableType {
@@ -6524,11 +6524,6 @@ template <class Derived> class ElementAccessExprBase : public Expr {
65246524 }
65256525 SourceLocation getEndLoc () const LLVM_READONLY { return AccessorLoc; }
65266526
6527- /* static bool classof(const Stmt *T) {
6528- return T->getStmtClass() == ExtVectorElementExprClass ||
6529- T->getStmtClass() == MatrixElementExprClass;
6530- }*/
6531-
65326527 child_range children () { return child_range (&Base, &Base + 1 ); }
65336528 const_child_range children () const {
65346529 return const_child_range (&Base, &Base + 1 );
0 commit comments