summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2014-06-27 19:05:17 +0000
committerAaron Ballman <aaron@aaronballman.com>2014-06-27 19:05:17 +0000
commit704fa86de5a76f93e6fadfa108d8fbd51c5e5726 (patch)
tree65243fc9a8b0792a623b5ae7b1fb475a6eb67295 /unittests
parentf2925a140759893627dbf13082825bce4bb5a7f2 (diff)
downloadllvm-704fa86de5a76f93e6fadfa108d8fbd51c5e5726.tar.gz
llvm-704fa86de5a76f93e6fadfa108d8fbd51c5e5726.tar.bz2
llvm-704fa86de5a76f93e6fadfa108d8fbd51c5e5726.tar.xz
Adding some trailing whitespace after a comment previously ending with \ to ensure that it isn't lexed as a multiline comment. This silences some -Wcomment warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211950 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Analysis/LazyCallGraphTest.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/unittests/Analysis/LazyCallGraphTest.cpp b/unittests/Analysis/LazyCallGraphTest.cpp
index d7c70453c9..836b25b840 100644
--- a/unittests/Analysis/LazyCallGraphTest.cpp
+++ b/unittests/Analysis/LazyCallGraphTest.cpp
@@ -42,15 +42,15 @@ std::unique_ptr<Module> parseAssembly(const char *Assembly) {
// IR forming a call graph with a diamond of triangle-shaped SCCs:
//
// d1
-// / \
+// / \
// d3--d2
-// / \
+// / \
// b1 c1
-// / \ / \
+// / \ / \
// b3--b2 c3--c2
// \ /
// a1
-// / \
+// / \
// a3--a2
//
// All call edges go up between SCCs, and clockwise around the SCC.