[polly] r243464 - Do not end lines with '\'

Tobias Grosser tobias at grosser.es
Tue Jul 28 12:16:43 PDT 2015


Author: grosser
Date: Tue Jul 28 14:16:42 2015
New Revision: 243464

URL: http://llvm.org/viewvc/llvm-project?rev=243464&view=rev
Log:
Do not end lines with '\'

This fixes 'warning: multi-line comment [-Wcomment]'

Modified:
    polly/trunk/include/polly/CodeGen/BlockGenerators.h

Modified: polly/trunk/include/polly/CodeGen/BlockGenerators.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/CodeGen/BlockGenerators.h?rev=243464&r1=243463&r2=243464&view=diff
==============================================================================
--- polly/trunk/include/polly/CodeGen/BlockGenerators.h (original)
+++ polly/trunk/include/polly/CodeGen/BlockGenerators.h Tue Jul 28 14:16:42 2015
@@ -193,8 +193,8 @@ protected:
   ///                                           x2.phiops = s1
   ///        |                                    |
   ///        |   <--<--<--<--<                    |   <--<--<--<--<
-  ///        | /              \                   | /              \
-  ///        V V               \                  V V               \
+  ///        | /              \                   | /              \     .
+  ///        V V               \                  V V               \    .
   /// S2:  x2 = phi (x1, add)   |        S2:    x2 = x2.phiops       |
   ///                           |               x2.s2a = x2          |
   ///                           |                                    |
@@ -228,8 +228,8 @@ protected:
   ///             x2.s2a = s1             // use .s2a instead of .phiops
   ///               |
   ///               |   <--<--<--<--<
-  ///               | /              \
-  ///               V V               \
+  ///               | /              \    .
+  ///               V V               \   .
   ///      S2:    x2 = x2.s2a          |  // value is same as above, but read
   ///                                  |  // from .s2a
   ///                                  |





More information about the llvm-commits mailing list