Fix comment ASCII art to unbreak the gcc 4.9.1 build
authorSanjoy Das <sanjoy@playingwithpointers.com>
Fri, 2 Oct 2015 23:24:52 +0000 (23:24 +0000)
committerSanjoy Das <sanjoy@playingwithpointers.com>
Fri, 2 Oct 2015 23:24:52 +0000 (23:24 +0000)
The trailing backslashes in some ASCII art added in r248527 cause a
"error: multi-line comment [-Werror=comment]" when building with gcc
4.9.1 -Wall.  Swallow (ASCII-)artistic integrity and use pipes instead.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@249212 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/IR/InstrTypes.h

index 70ab9736b429ab57b776f24f12b5d05880862f9f..0c2ff91b00a47e9fdf14ab103d15277fa81a25a3 100644 (file)
@@ -1134,19 +1134,19 @@ typedef OperandBundleDefT<const Value *> ConstOperandBundleDef;
 ///
 /// The layout of an operand bundle user is
 ///
-///              +-------uint32_t End---------------------------------+
-///             /                                                      \
-///            /  +------uint32_t Begin------------------+              \
-///           /  /                                        \              \
+///          +-----------uint32_t End-------------------------------------+
+///          |                                                            |
+///          |  +--------uint32_t Begin--------------------+              |
+///          |  |                                          |              |
 ///          ^  ^                                          v              v
 ///  |------|------|----|----|----|----|----|---------|----|---------|----|-----
 ///  | BOI0 | BOI1 | .. | DU | U0 | U1 | .. | BOI0_U0 | .. | BOI1_U0 | .. | Un
 ///  |------|------|----|----|----|----|----|---------|----|---------|----|-----
 ///   v  v                                  ^              ^
-///    \  \                                /              /
-///     \  +------uint32_t Begin----------+              /
-///      \                                              /
-///       +-------uint32_t End-------------------------+
+///   |  |                                  |              |
+///   |  +--------uint32_t Begin------------+              |
+///   |                                                    |
+///   +-----------uint32_t End-----------------------------+
 ///
 ///
 /// BOI0, BOI1 ... are descriptions of operand bundles in this User's use list.