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
This commit is contained in:
Benjamin Kramer
2013-10-18 14:12:50 +00:00
parent 485333df71
commit 006900affd

View File

@@ -1339,7 +1339,7 @@ int AMDGPUCFGStructurizer::improveSimpleJumpintoIf(MachineBasicBlock *HeadMBB,
// XXX: We have an opportunity here to optimize the "branch into if" case // XXX: We have an opportunity here to optimize the "branch into if" case
// here. Branch into if looks like this: // here. Branch into if looks like this:
// entry // entry
// / \ // / |
// diamond_head branch_from // diamond_head branch_from
// / \ | // / \ |
// diamond_false diamond_true // diamond_false diamond_true
@@ -1379,11 +1379,11 @@ int AMDGPUCFGStructurizer::improveSimpleJumpintoIf(MachineBasicBlock *HeadMBB,
// //
// After the above changes, the new CFG should look like this: // After the above changes, the new CFG should look like this:
// entry // entry
// / \ // / |
// diamond_head branch_from // diamond_head branch_from
// \ / // \ /
// new_block // new_block
// / \ // / |
// diamond_false diamond_true // diamond_false diamond_true
// \ / // \ /
// done // done
@@ -1392,7 +1392,7 @@ int AMDGPUCFGStructurizer::improveSimpleJumpintoIf(MachineBasicBlock *HeadMBB,
// block and we will end up with a CFG like this: // block and we will end up with a CFG like this:
// //
// entry // entry
// / \ // / |
// diamond_head branch_from // diamond_head branch_from
// / \ | // / \ |
// diamond_false diamond_true diamond_true (duplicate) // diamond_false diamond_true diamond_true (duplicate)