Author: Amr Hesham Date: 2025-10-16T21:47:32+02:00 New Revision: 9458faa63fcecf16e744d88746097cb82936d1e6
URL: https://github.com/llvm/llvm-project/commit/9458faa63fcecf16e744d88746097cb82936d1e6 DIFF: https://github.com/llvm/llvm-project/commit/9458faa63fcecf16e744d88746097cb82936d1e6.diff LOG: [CIR][NFC] Fix code style warnings (#163842) Fix code style warnings in the emitNewArrayInitializer declaration Added: Modified: clang/lib/CIR/CodeGen/CIRGenFunction.h Removed: ################################################################################ diff --git a/clang/lib/CIR/CodeGen/CIRGenFunction.h b/clang/lib/CIR/CodeGen/CIRGenFunction.h index 0d64c31f01668..3c36f5c697118 100644 --- a/clang/lib/CIR/CodeGen/CIRGenFunction.h +++ b/clang/lib/CIR/CodeGen/CIRGenFunction.h @@ -1313,10 +1313,10 @@ class CIRGenFunction : public CIRGenTypeCache { mlir::Value emitCXXNewExpr(const CXXNewExpr *e); - void emitNewArrayInitializer(const CXXNewExpr *E, QualType ElementType, - mlir::Type ElementTy, Address BeginPtr, - mlir::Value NumElements, - mlir::Value AllocSizeWithoutCookie); + void emitNewArrayInitializer(const CXXNewExpr *e, QualType elementType, + mlir::Type elementTy, Address beginPtr, + mlir::Value numElements, + mlir::Value allocSizeWithoutCookie); RValue emitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *e, const CXXMethodDecl *md, _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
