diff options
author | Eric Christopher <echristo@gmail.com> | 2019-02-26 20:33:22 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2019-02-26 20:33:22 +0000 |
commit | 721eaeff3a2429fecbaeb9a47ca1339cd7cb03ce (patch) | |
tree | bc142d5136d622811424708c34641da980419325 | |
parent | 42d9cd2d350df895f2e78de9a134a26526cc86cb (diff) | |
download | bcm5719-llvm-721eaeff3a2429fecbaeb9a47ca1339cd7cb03ce.tar.gz bcm5719-llvm-721eaeff3a2429fecbaeb9a47ca1339cd7cb03ce.zip |
Fix a small comment typo.
llvm-svn: 354923
-rw-r--r-- | llvm/lib/Passes/PassBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Passes/PassBuilder.cpp b/llvm/lib/Passes/PassBuilder.cpp index 2072fc3aa26..9d5f5aa4b78 100644 --- a/llvm/lib/Passes/PassBuilder.cpp +++ b/llvm/lib/Passes/PassBuilder.cpp @@ -1082,7 +1082,7 @@ PassBuilder::buildLTODefaultPipeline(OptimizationLevel Level, bool DebugLogging, // FIXME: Is this really an optimization rather than a canonicalization? MPM.addPass(ReversePostOrderFunctionAttrsPass()); - // Use inragne annotations on GEP indices to split globals where beneficial. + // Use in-range annotations on GEP indices to split globals where beneficial. MPM.addPass(GlobalSplitPass()); // Run whole program optimization of virtual call when the list of callees |