[llvm] r359640 - Make some comments that were meant to be for public documentation
Eric Christopher via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 30 18:28:13 PDT 2019
Author: echristo
Date: Tue Apr 30 18:28:12 2019
New Revision: 359640
URL: http://llvm.org/viewvc/llvm-project?rev=359640&view=rev
Log:
Make some comments that were meant to be for public documentation
actually public documentation (i.e. // -> ///).
Modified:
llvm/trunk/include/llvm/Passes/PassBuilder.h
Modified: llvm/trunk/include/llvm/Passes/PassBuilder.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Passes/PassBuilder.h?rev=359640&r1=359639&r2=359640&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Passes/PassBuilder.h (original)
+++ llvm/trunk/include/llvm/Passes/PassBuilder.h Tue Apr 30 18:28:12 2019
@@ -122,9 +122,9 @@ public:
enum class ThinLTOPhase {
/// No ThinLTO behavior needed.
None,
- // ThinLTO prelink (summary) phase.
+ /// ThinLTO prelink (summary) phase.
PreLink,
- // ThinLTO postlink (backend compile) phase.
+ /// ThinLTO postlink (backend compile) phase.
PostLink
};
@@ -223,7 +223,7 @@ public:
/// Cross register the analysis managers through their proxies.
///
/// This is an interface that can be used to cross register each
- // AnalysisManager with all the others analysis managers.
+ /// AnalysisManager with all the others analysis managers.
void crossRegisterProxies(LoopAnalysisManager &LAM,
FunctionAnalysisManager &FAM,
CGSCCAnalysisManager &CGAM,
More information about the llvm-commits
mailing list