[clang] [CIR][NFC] Fix LoweringPrepare pass multi lines summary (PR #148826)
Amr Hesham via cfe-commits
cfe-commits at lists.llvm.org
Tue Jul 15 04:13:59 PDT 2025
https://github.com/AmrDeveloper created https://github.com/llvm/llvm-project/pull/148826
Fix the Lowering Prepare a multi-line summary
>From 10a58ba4f1872a7ea6ba302178dfe48625584a5f Mon Sep 17 00:00:00 2001
From: AmrDeveloper <amr96 at programmer.net>
Date: Tue, 15 Jul 2025 13:12:10 +0200
Subject: [PATCH] [CIR][NFC] Fix LoweringPrepare pass multi lines summary
---
clang/include/clang/CIR/Dialect/Passes.td | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/clang/include/clang/CIR/Dialect/Passes.td b/clang/include/clang/CIR/Dialect/Passes.td
index 65eb857035224..7d5ec2ffed39d 100644
--- a/clang/include/clang/CIR/Dialect/Passes.td
+++ b/clang/include/clang/CIR/Dialect/Passes.td
@@ -73,8 +73,8 @@ def CIRFlattenCFG : Pass<"cir-flatten-cfg"> {
}
def LoweringPrepare : Pass<"cir-lowering-prepare"> {
- let summary = "Lower to more fine-grained CIR operations before lowering to
- other dialects";
+ let summary = "Lower to more fine-grained CIR operations before lowering to "
+ "other dialects";
let description = [{
This pass does preparation work for lowering to other dialects. For example,
it may expand the global variable initialziation in a more ABI-friendly form.
More information about the cfe-commits
mailing list