aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2013-10-18 14:12:50 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2013-10-18 14:12:50 +0000
commit006900affddd6041ee0eb0fb90d582499d96b235 (patch)
tree486d8b2ff1a9ee6999ba04d30ad609f9c546054a
parent485333df7157d6e8681d910d85b271b0bc96b48e (diff)
downloadexternal_llvm-006900affddd6041ee0eb0fb90d582499d96b235.zip
external_llvm-006900affddd6041ee0eb0fb90d582499d96b235.tar.gz
external_llvm-006900affddd6041ee0eb0fb90d582499d96b235.tar.bz2
R600: Remove \ at EOL from ascii art comments.
Completely harmless, but GCC likes to warn about it even when the next line is a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192974 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/R600/AMDILCFGStructurizer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/R600/AMDILCFGStructurizer.cpp b/lib/Target/R600/AMDILCFGStructurizer.cpp
index a9337f0..beaaba8 100644
--- a/lib/Target/R600/AMDILCFGStructurizer.cpp
+++ b/lib/Target/R600/AMDILCFGStructurizer.cpp
@@ -1339,7 +1339,7 @@ int AMDGPUCFGStructurizer::improveSimpleJumpintoIf(MachineBasicBlock *HeadMBB,
// XXX: We have an opportunity here to optimize the "branch into if" case
// here. Branch into if looks like this:
// entry
- // / \
+ // / |
// diamond_head branch_from
// / \ |
// diamond_false diamond_true
@@ -1379,11 +1379,11 @@ int AMDGPUCFGStructurizer::improveSimpleJumpintoIf(MachineBasicBlock *HeadMBB,
//
// After the above changes, the new CFG should look like this:
// entry
- // / \
+ // / |
// diamond_head branch_from
// \ /
// new_block
- // / \
+ // / |
// diamond_false diamond_true
// \ /
// done
@@ -1392,7 +1392,7 @@ int AMDGPUCFGStructurizer::improveSimpleJumpintoIf(MachineBasicBlock *HeadMBB,
// block and we will end up with a CFG like this:
//
// entry
- // / \
+ // / |
// diamond_head branch_from
// / \ |
// diamond_false diamond_true diamond_true (duplicate)