[llvm] r207629 - Fix multiline comment warning.
Evgeniy Stepanov
eugeni.stepanov at gmail.com
Wed Apr 30 03:29:06 PDT 2014
Author: eugenis
Date: Wed Apr 30 05:29:06 2014
New Revision: 207629
URL: http://llvm.org/viewvc/llvm-project?rev=207629&view=rev
Log:
Fix multiline comment warning.
../unittests/Analysis/LazyCallGraphTest.cpp:45:1: warning: multi-line comment [-Wcomment]
// / \
^
Modified:
llvm/trunk/unittests/Analysis/LazyCallGraphTest.cpp
Modified: llvm/trunk/unittests/Analysis/LazyCallGraphTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/Analysis/LazyCallGraphTest.cpp?rev=207629&r1=207628&r2=207629&view=diff
==============================================================================
--- llvm/trunk/unittests/Analysis/LazyCallGraphTest.cpp (original)
+++ llvm/trunk/unittests/Analysis/LazyCallGraphTest.cpp Wed Apr 30 05:29:06 2014
@@ -41,17 +41,17 @@ std::unique_ptr<Module> parseAssembly(co
// IR forming a call graph with a diamond of triangle-shaped SCCs:
//
-// d1
-// / \
-// d3--d2
-// / \
-// b1 c1
-// / \ / \
-// b3--b2 c3--c2
-// \ /
-// a1
-// / \
-// a3--a2
+// d1 |
+// / \ |
+// d3--d2 |
+// / \ |
+// b1 c1 |
+// / \ / \ |
+// b3--b2 c3--c2 |
+// \ / |
+// a1 |
+// / \ |
+// a3--a2 |
//
// All call edges go up between SCCs, and clockwise around the SCC.
static const char DiamondOfTriangles[] =
More information about the llvm-commits
mailing list