diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2014-06-27 19:52:34 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2014-06-27 19:52:34 +0000 |
commit | 1c4a478c636a02154f62148c091966155ca8631b (patch) | |
tree | 9c8919b47c81e4cfa1691a18b5910b9a0ca6586c /llvm/unittests/Analysis/LazyCallGraphTest.cpp | |
parent | 9982f06aa3d712a2921cc6d6a6db9813fb9d4bac (diff) | |
download | bcm5719-llvm-1c4a478c636a02154f62148c091966155ca8631b.tar.gz bcm5719-llvm-1c4a478c636a02154f62148c091966155ca8631b.zip |
Reverting r211950 -- it did not help resolve the -Wcomment warnings triggered in GCC.
llvm-svn: 211953
Diffstat (limited to 'llvm/unittests/Analysis/LazyCallGraphTest.cpp')
-rw-r--r-- | llvm/unittests/Analysis/LazyCallGraphTest.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/unittests/Analysis/LazyCallGraphTest.cpp b/llvm/unittests/Analysis/LazyCallGraphTest.cpp index 836b25b8400..d7c70453c9b 100644 --- a/llvm/unittests/Analysis/LazyCallGraphTest.cpp +++ b/llvm/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. |