[llvm] r192974 - R600: Remove \ at EOL from ascii art comments.
Benjamin Kramer
benny.kra at googlemail.com
Fri Oct 18 07:12:50 PDT 2013
Author: d0k
Date: Fri Oct 18 09:12:50 2013
New Revision: 192974
URL: http://llvm.org/viewvc/llvm-project?rev=192974&view=rev
Log:
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.
Modified:
llvm/trunk/lib/Target/R600/AMDILCFGStructurizer.cpp
Modified: llvm/trunk/lib/Target/R600/AMDILCFGStructurizer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/R600/AMDILCFGStructurizer.cpp?rev=192974&r1=192973&r2=192974&view=diff
==============================================================================
--- llvm/trunk/lib/Target/R600/AMDILCFGStructurizer.cpp (original)
+++ llvm/trunk/lib/Target/R600/AMDILCFGStructurizer.cpp Fri Oct 18 09:12:50 2013
@@ -1339,7 +1339,7 @@ int AMDGPUCFGStructurizer::improveSimple
// 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::improveSimple
//
// 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::improveSimple
// block and we will end up with a CFG like this:
//
// entry
- // / \
+ // / |
// diamond_head branch_from
// / \ |
// diamond_false diamond_true diamond_true (duplicate)
More information about the llvm-commits
mailing list