[llvm] 86f970e - [IROutliner][NFC] Fix typo in doc of findOrCreatePHIInBlock
Andrew Litteken via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 21 10:34:36 PDT 2022
Author: Hirochika Matsumoto
Date: 2022-03-21T12:34:20-05:00
New Revision: 86f970e595f484694f7fd0fb1b428315731e5956
URL: https://github.com/llvm/llvm-project/commit/86f970e595f484694f7fd0fb1b428315731e5956
DIFF: https://github.com/llvm/llvm-project/commit/86f970e595f484694f7fd0fb1b428315731e5956.diff
LOG: [IROutliner][NFC] Fix typo in doc of findOrCreatePHIInBlock
Typo Fix in Documentation
Author: hkmatsumoto
Reviewers: AndrewLitteken
Differential Revision: https://reviews.llvm.org/D121627
Added:
Modified:
llvm/lib/Transforms/IPO/IROutliner.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/IPO/IROutliner.cpp b/llvm/lib/Transforms/IPO/IROutliner.cpp
index 79d767c387e63..9b7263916c802 100644
--- a/llvm/lib/Transforms/IPO/IROutliner.cpp
+++ b/llvm/lib/Transforms/IPO/IROutliner.cpp
@@ -1608,12 +1608,12 @@ static void findCanonNumsForPHI(
/// function.
///
/// \param PN [in] - The PHINode that we are finding the canonical numbers for.
-/// \param Region [in] - The OutlinableRegion containing \p PN.
+/// \param Region [in] - The OutlinableRegion containing \p PN.
/// \param OverallPhiBlock [in] - The overall PHIBlock we are trying to find
/// \p PN in.
/// \param OutputMappings [in] - The mapping of output values from outlined
/// region to their original values.
-/// \param UsedPhis [in, out] - The PHINodes in the block that have already been
+/// \param UsedPHIs [in, out] - The PHINodes in the block that have already been
/// matched.
/// \return the newly found or created PHINode in \p OverallPhiBlock.
static PHINode*
More information about the llvm-commits
mailing list