diff options
author | Johannes Doerfert <doerfert@cs.uni-saarland.de> | 2018-09-11 17:49:43 +0000 |
---|---|---|
committer | Johannes Doerfert <doerfert@cs.uni-saarland.de> | 2018-09-11 17:49:43 +0000 |
commit | 8b7b743cc1b83eec0f43dab625dff9b3817a5a3a (patch) | |
tree | fbc7abda66fadf40d3fc5174011c71fb4d857ec6 /llvm/unittests/Analysis | |
parent | ea85b52732827eb41913a1cd60ae66b56e99de82 (diff) | |
download | bcm5719-llvm-8b7b743cc1b83eec0f43dab625dff9b3817a5a3a.tar.gz bcm5719-llvm-8b7b743cc1b83eec0f43dab625dff9b3817a5a3a.zip |
[LoopInfo][FIX] Remove leftover dump in unit test
llvm-svn: 341968
Diffstat (limited to 'llvm/unittests/Analysis')
-rw-r--r-- | llvm/unittests/Analysis/LoopInfoTest.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/unittests/Analysis/LoopInfoTest.cpp b/llvm/unittests/Analysis/LoopInfoTest.cpp index 240785f9eb9..9a59fc84142 100644 --- a/llvm/unittests/Analysis/LoopInfoTest.cpp +++ b/llvm/unittests/Analysis/LoopInfoTest.cpp @@ -110,7 +110,6 @@ TEST(LoopInfoTest, LoopWithMultipleLatches) { runWithLoopInfo(*M, "foo", [&](Function &F, LoopInfo &LI) { Function::iterator FI = F.begin(); - F.dump(); // First basic block is entry - skip it. BasicBlock *Header = &*(++FI); assert(Header->getName() == "for.cond"); |