[llvm] r295073 - [LazyBFI] Fix typos

Adam Nemet via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 14 09:21:12 PST 2017


Author: anemet
Date: Tue Feb 14 11:21:12 2017
New Revision: 295073

URL: http://llvm.org/viewvc/llvm-project?rev=295073&view=rev
Log:
[LazyBFI] Fix typos

Modified:
    llvm/trunk/include/llvm/Analysis/LazyBlockFrequencyInfo.h
    llvm/trunk/lib/Analysis/LazyBlockFrequencyInfo.cpp

Modified: llvm/trunk/include/llvm/Analysis/LazyBlockFrequencyInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/LazyBlockFrequencyInfo.h?rev=295073&r1=295072&r2=295073&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/LazyBlockFrequencyInfo.h (original)
+++ llvm/trunk/include/llvm/Analysis/LazyBlockFrequencyInfo.h Tue Feb 14 11:21:12 2017
@@ -9,7 +9,7 @@
 //
 // This is an alternative analysis pass to BlockFrequencyInfoWrapperPass.  The
 // difference is that with this pass the block frequencies are not computed when
-// the analysis pass is executed but rather when the BFI results is explicitly
+// the analysis pass is executed but rather when the BFI result is explicitly
 // requested by the analysis client.
 //
 //===----------------------------------------------------------------------===//
@@ -78,7 +78,7 @@ private:
 /// \brief This is an alternative analysis pass to
 /// BlockFrequencyInfoWrapperPass.  The difference is that with this pass the
 /// block frequencies are not computed when the analysis pass is executed but
-/// rather when the BFI results is explicitly requested by the analysis client.
+/// rather when the BFI result is explicitly requested by the analysis client.
 ///
 /// There are some additional requirements for any client pass that wants to use
 /// the analysis:

Modified: llvm/trunk/lib/Analysis/LazyBlockFrequencyInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/LazyBlockFrequencyInfo.cpp?rev=295073&r1=295072&r2=295073&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/LazyBlockFrequencyInfo.cpp (original)
+++ llvm/trunk/lib/Analysis/LazyBlockFrequencyInfo.cpp Tue Feb 14 11:21:12 2017
@@ -9,7 +9,7 @@
 //
 // This is an alternative analysis pass to BlockFrequencyInfoWrapperPass.  The
 // difference is that with this pass the block frequencies are not computed when
-// the analysis pass is executed but rather when the BFI results is explicitly
+// the analysis pass is executed but rather when the BFI result is explicitly
 // requested by the analysis client.
 //
 //===----------------------------------------------------------------------===//




More information about the llvm-commits mailing list