diff options
author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-10-02 23:24:52 +0000 |
---|---|---|
committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-10-02 23:24:52 +0000 |
commit | a45373f19351bf6b77d78198b0f5dd3dec3c1614 (patch) | |
tree | 507fb35df608bb7745088d9691457dc550566f9b | |
parent | 55015d210f2b999f6f35083c4b337038bb99da47 (diff) | |
download | bcm5719-llvm-a45373f19351bf6b77d78198b0f5dd3dec3c1614.tar.gz bcm5719-llvm-a45373f19351bf6b77d78198b0f5dd3dec3c1614.zip |
Fix comment ASCII art to unbreak the gcc 4.9.1 build
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.
llvm-svn: 249212
-rw-r--r-- | llvm/include/llvm/IR/InstrTypes.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/llvm/include/llvm/IR/InstrTypes.h b/llvm/include/llvm/IR/InstrTypes.h index 70ab9736b42..0c2ff91b00a 100644 --- a/llvm/include/llvm/IR/InstrTypes.h +++ b/llvm/include/llvm/IR/InstrTypes.h @@ -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. |