Shift art to the right to keep GCC from complaining about multi-line comments.
authorBenjamin Kramer <benny.kra@googlemail.com>
Thu, 22 Oct 2009 09:28:49 +0000 (09:28 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Thu, 22 Oct 2009 09:28:49 +0000 (09:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84849 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/MSP430/MSP430ISelDAGToDAG.cpp

index 4b6a83c7ddaeb3cd3dd9a9a8947269f0424eaf6e..b7d928249c02a513a84b554b5686bc81f7c9a734 100644 (file)
@@ -165,10 +165,10 @@ bool MSP430DAGToDAGISel::IsLegalAndProfitableToFold(SDNode *N, SDNode *U,
   if (OptLevel == CodeGenOpt::None) return false;
 
   /// RMW preprocessing creates the following code:
-  ///       [Load1]
-  ///       ^     ^
-  ///       |      \
-  ///       |       \
+  ///         [Load1]
+  ///         ^     ^
+  ///        /      |
+  ///       /       |
   ///       [Load2] |
   ///       ^    ^  |
   ///       |    |  |
@@ -328,16 +328,16 @@ static bool isRMWLoad(SDValue N, SDValue Chain, SDValue Address,
 /// We also recognize the case where second operand of Op is load as well and
 /// move it below token factor as well creating DAG as follows:
 ///
-///     [Load chain]
-///         ^
-///         |
-///    [TokenFactor]
-///         ^
-///         |
-///       [Load1]
-///       ^     ^
-///       |      \
-///       |       \
+///       [Load chain]
+///            ^
+///            |
+///      [TokenFactor]
+///            ^
+///            |
+///         [Load1]
+///         ^     ^
+///        /      |
+///       /       |
 ///       [Load2] |
 ///       ^    ^  |
 ///       |    |  |