diff options
author | Jessica Paquette <jpaquette@apple.com> | 2018-09-11 16:38:46 +0000 |
---|---|---|
committer | Jessica Paquette <jpaquette@apple.com> | 2018-09-11 16:38:46 +0000 |
commit | 49d190f6f8f4e78ac1438c6054ffea087aa85bfd (patch) | |
tree | fd87c19107d61b94a2170c2a3a7bd9efcfb14af1 | |
parent | 050d1ac4a660ba5b29cc54a57e08c8433cdb4214 (diff) | |
download | bcm5719-llvm-49d190f6f8f4e78ac1438c6054ffea087aa85bfd.tar.gz bcm5719-llvm-49d190f6f8f4e78ac1438c6054ffea087aa85bfd.zip |
[NFC] Fix typo in comment
Fore -> For
llvm-svn: 341960
-rw-r--r-- | llvm/include/llvm/IR/PassManager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/IR/PassManager.h b/llvm/include/llvm/IR/PassManager.h index a5d4aaf71c0..3c18bbd5df7 100644 --- a/llvm/include/llvm/IR/PassManager.h +++ b/llvm/include/llvm/IR/PassManager.h @@ -930,7 +930,7 @@ using FunctionAnalysisManager = AnalysisManager<Function>; /// analysis manager over an "inner" IR unit. The inner unit must be contained /// in the outer unit. /// -/// Fore example, InnerAnalysisManagerProxy<FunctionAnalysisManager, Module> is +/// For example, InnerAnalysisManagerProxy<FunctionAnalysisManager, Module> is /// an analysis over Modules (the "outer" unit) that provides access to a /// Function analysis manager. The FunctionAnalysisManager is the "inner" /// manager being proxied, and Functions are the "inner" unit. The inner/outer |