diff options
author | Dale Johannesen <dalej@apple.com> | 2008-12-03 22:45:31 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2008-12-03 22:45:31 +0000 |
commit | 1bdd93a3dcd16de259011c5b4326512a77e5337d (patch) | |
tree | 4fc022e3b6983a40dc6537369253022182a9d09f | |
parent | 308f24d4525a6365f8d65ba821786189c080c0ce (diff) |
Make the debugging dump be a full line.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60509 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Analysis/ScalarEvolution.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index e82f5a4c50..187af66cdb 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -112,6 +112,7 @@ char ScalarEvolution::ID = 0; SCEV::~SCEV() {} void SCEV::dump() const { print(cerr); + cerr << '\n'; } uint32_t SCEV::getBitWidth() const { |