summaryrefslogtreecommitdiffstats
path: root/polly/lib/Transform/DeadCodeElimination.cpp
diff options
context:
space:
mode:
authorTobias Grosser <tobias@grosser.es>2016-09-02 06:33:33 +0000
committerTobias Grosser <tobias@grosser.es>2016-09-02 06:33:33 +0000
commitc80d6979bd940077355beae115808d7e4f85b39c (patch)
treef3c10311d75ce5dc8438d3702d0ef545f84905d7 /polly/lib/Transform/DeadCodeElimination.cpp
parentad79bf4712ded9f70c1437a47660b04c61ba82ce (diff)
downloadbcm5719-llvm-c80d6979bd940077355beae115808d7e4f85b39c.tar.gz
bcm5719-llvm-c80d6979bd940077355beae115808d7e4f85b39c.zip
Drop '@brief' from doxygen comments
LLVM's coding guideline suggests to not use @brief for one-sentence doxygen comments to improve readability. Switch this once and for all to ensure people do not copy @brief comments from other parts of Polly, when writing new code. llvm-svn: 280468
Diffstat (limited to 'polly/lib/Transform/DeadCodeElimination.cpp')
-rw-r--r--polly/lib/Transform/DeadCodeElimination.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/polly/lib/Transform/DeadCodeElimination.cpp b/polly/lib/Transform/DeadCodeElimination.cpp
index 5bf5c0fb146..b52d1597739 100644
--- a/polly/lib/Transform/DeadCodeElimination.cpp
+++ b/polly/lib/Transform/DeadCodeElimination.cpp
@@ -59,14 +59,14 @@ public:
static char ID;
explicit DeadCodeElim() : ScopPass(ID) {}
- /// @brief Remove dead iterations from the schedule of @p S.
+ /// Remove dead iterations from the schedule of @p S.
bool runOnScop(Scop &S) override;
- /// @brief Register all analyses and transformation required.
+ /// Register all analyses and transformation required.
void getAnalysisUsage(AnalysisUsage &AU) const override;
private:
- /// @brief Return the set of live iterations.
+ /// Return the set of live iterations.
///
/// The set of live iterations are all iterations that write to memory and for
/// which we can not prove that there will be a later write that _must_
OpenPOWER on IntegriCloud