[llvm] 597ccb8 - [NFC] Fix typo in description of `AfterPassInvalidatedCallbacks` (#113779)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Oct 26 17:15:22 PDT 2024
Author: Justin Fargnoli
Date: 2024-10-26T17:15:19-07:00
New Revision: 597ccb800829af69ebc18cd7c75d878c8d21de6e
URL: https://github.com/llvm/llvm-project/commit/597ccb800829af69ebc18cd7c75d878c8d21de6e
DIFF: https://github.com/llvm/llvm-project/commit/597ccb800829af69ebc18cd7c75d878c8d21de6e.diff
LOG: [NFC] Fix typo in description of `AfterPassInvalidatedCallbacks` (#113779)
Added:
Modified:
llvm/include/llvm/IR/PassInstrumentation.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/IR/PassInstrumentation.h b/llvm/include/llvm/IR/PassInstrumentation.h
index 45ee372e7959d1..4e65804179ae71 100644
--- a/llvm/include/llvm/IR/PassInstrumentation.h
+++ b/llvm/include/llvm/IR/PassInstrumentation.h
@@ -182,7 +182,7 @@ class PassInstrumentationCallbacks {
BeforeNonSkippedPassCallbacks;
/// These are run on passes that have just run.
SmallVector<llvm::unique_function<AfterPassFunc>, 4> AfterPassCallbacks;
- /// These are run passes that have just run on invalidated IR.
+ /// These are run on passes that have just run on invalidated IR.
SmallVector<llvm::unique_function<AfterPassInvalidatedFunc>, 4>
AfterPassInvalidatedCallbacks;
/// These are run on analyses that are about to be run.
More information about the llvm-commits
mailing list