[clang] [CIR][NFC] Fix code style warnings (PR #163842)
Amr Hesham via cfe-commits
cfe-commits at lists.llvm.org
Thu Oct 16 11:32:00 PDT 2025
https://github.com/AmrDeveloper created https://github.com/llvm/llvm-project/pull/163842
Fix code style warnings in the emitNewArrayInitializer declaration
>From 8af8566b6c1604c30fee67f040a73c10d50bed81 Mon Sep 17 00:00:00 2001
From: Amr Hesham <amr96 at programmer.net>
Date: Thu, 16 Oct 2025 20:30:14 +0200
Subject: [PATCH] [CIR][NFC] Fix code style warnings
---
clang/lib/CIR/CodeGen/CIRGenFunction.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
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,
More information about the cfe-commits
mailing list