diff options
author | Adam Nemet <anemet@apple.com> | 2016-07-08 21:24:13 +0000 |
---|---|---|
committer | Adam Nemet <anemet@apple.com> | 2016-07-08 21:24:13 +0000 |
commit | 0a24048bb7a00633c895a3bb5a493156259023c6 (patch) | |
tree | 666fee555ed4076d0364d039246477a2e1b1d142 /llvm | |
parent | f836067cc02460d338537681d4fe3ada53190066 (diff) | |
download | bcm5719-llvm-0a24048bb7a00633c895a3bb5a493156259023c6.tar.gz bcm5719-llvm-0a24048bb7a00633c895a3bb5a493156259023c6.zip |
[BFI] Minor cleanup. NFC
Use typedef Result in BlockFrequencyAnalysis::run. Fix typo in comment.
llvm-svn: 274936
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/Analysis/BlockFrequencyInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Analysis/BlockFrequencyInfo.h b/llvm/include/llvm/Analysis/BlockFrequencyInfo.h index 12d2e6876e3..ed473abf3b3 100644 --- a/llvm/include/llvm/Analysis/BlockFrequencyInfo.h +++ b/llvm/include/llvm/Analysis/BlockFrequencyInfo.h @@ -89,8 +89,8 @@ public: /// \brief Provide the result typedef for this analysis pass. typedef BlockFrequencyInfo Result; - /// \brief Run the analysis pass over a function and produce BPI. - BlockFrequencyInfo run(Function &F, AnalysisManager<Function> &AM); + /// \brief Run the analysis pass over a function and produce BFI. + Result run(Function &F, AnalysisManager<Function> &AM); }; /// \brief Printer pass for the \c BlockFrequencyInfo results. |