[Mlir-commits] [mlir] 96c87a1 - [MLIR][NFC] Fix comment in `Region.cpp`
lorenzo chelini
llvmlistbot at llvm.org
Mon Feb 24 06:34:41 PST 2025
Author: lorenzo chelini
Date: 2025-02-24T15:33:44+01:00
New Revision: 96c87a16a507207e839f20b668ccd51dd2db6123
URL: https://github.com/llvm/llvm-project/commit/96c87a16a507207e839f20b668ccd51dd2db6123
DIFF: https://github.com/llvm/llvm-project/commit/96c87a16a507207e839f20b668ccd51dd2db6123.diff
LOG: [MLIR][NFC] Fix comment in `Region.cpp`
BlockAndValueMapping has been renamed to IRMapping
Added:
Modified:
mlir/lib/IR/Region.cpp
Removed:
################################################################################
diff --git a/mlir/lib/IR/Region.cpp b/mlir/lib/IR/Region.cpp
index 99ca6c5013c11..46b6298076d48 100644
--- a/mlir/lib/IR/Region.cpp
+++ b/mlir/lib/IR/Region.cpp
@@ -87,7 +87,7 @@ void Region::cloneInto(Region *dest, Region::iterator destPos,
// of the blocks or operation results contained within this region as that
// would lead to a write in their use-def list. This is unavoidable for
// 'Value's from outside the region however, in which case it is not read
- // only. Using the BlockAndValueMapper it is possible to remap such 'Value's
+ // only. Using the IRMapper it is possible to remap such 'Value's
// to ones owned by the calling thread however, making it read only once
// again.
More information about the Mlir-commits
mailing list