[llvm] r345454 - Fix -Wdocumentation warning. NFCI.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Sat Oct 27 08:14:42 PDT 2018


Author: rksimon
Date: Sat Oct 27 08:14:42 2018
New Revision: 345454

URL: http://llvm.org/viewvc/llvm-project?rev=345454&view=rev
Log:
Fix -Wdocumentation warning. NFCI.

Modified:
    llvm/trunk/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp?rev=345454&r1=345453&r2=345454&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp Sat Oct 27 08:14:42 2018
@@ -2179,17 +2179,17 @@ computeDomSubtreeCost(DomTreeNode &N,
 /// Turns a llvm.experimental.guard intrinsic into implicit control flow branch,
 /// making the following replacement:
 ///
-///   <code before guard>
+///   --code before guard--
 ///   call void (i1, ...) @llvm.experimental.guard(i1 %cond) [ "deopt"() ]
-///   <code after guard>
+///   --code after guard--
 ///
 /// into
 ///
-///   <code before guard>
+///   --code before guard--
 ///   br i1 %cond, label %guarded, label %deopt
 ///
 /// guarded:
-///   <code after guard>
+///   --code after guard--
 ///
 /// deopt:
 ///   call void (i1, ...) @llvm.experimental.guard(i1 false) [ "deopt"() ]




More information about the llvm-commits mailing list