Skip to content

Commit

Permalink
Fix -Wcomment
Browse files Browse the repository at this point in the history
```
warning: '/*' within block comment [-Wcomment]
```
  • Loading branch information
fjeremic committed May 6, 2021
1 parent d96f2b3 commit 387ae3f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion compiler/optimizer/LoopVersioner.cpp
Expand Up @@ -9170,7 +9170,7 @@ bool TR_LoopVersioner::guardOkForExpr(TR::Node *node, bool onlySearching)
* While it is not necessarily incorrect for \p node for to be unrepresentable,
* it is unexpected and likely to cause a performance problem. So in case
* \p node \em is unrepresentable, this method increments a static debug
* counter matching <tt>{loopVersioner.unrepresentable/*}</tt>, and optionally
* counter matching <tt>{loopVersioner.unrepresentable*}</tt>, and optionally
* fails an assertion when enabled using \c ASSERT_REPRESENTABLE_IN_VERSIONER
* or \c TR_assertRepresentableInVersioner.
*
Expand Down
4 changes: 2 additions & 2 deletions compiler/optimizer/LoopVersioner.hpp
Expand Up @@ -257,7 +257,7 @@ struct LoopTemps : public TR_Link<LoopTemps>
* kind and test type (see guardOkForExpr())
*
* Privatization-related debug counters:
* - \c staticDebugCounters={loopVersioner.unrepresentable/*}
* - \c staticDebugCounters={loopVersioner.unrepresentable*}
*
* \see LoopImprovement
* \see LoopEntryPrep
Expand Down Expand Up @@ -320,7 +320,7 @@ class TR_LoopVersioner : public TR_LoopTransformer
*
* Furthermore, to help detect cases where optimization is inhibited because
* of an unrepresentable expression, static debug counters are available:
* <tt>staticDebugCounters={loopVersioner.unrepresentable/*}</tt>.
* <tt>staticDebugCounters={loopVersioner.unrepresentable*}</tt>.
*
* For an overview of privatization and the deferral of transformations see
* TR_LoopVersioner.
Expand Down

0 comments on commit 387ae3f

Please sign in to comment.