diff options
| author | David Greene <greened@obbligato.org> | 2009-12-23 23:00:50 +0000 |
|---|---|---|
| committer | David Greene <greened@obbligato.org> | 2009-12-23 23:00:50 +0000 |
| commit | 3fe18e72b3589b32f2de3c57c6b8b9d866b07190 (patch) | |
| tree | fbbf200390b9b1754b3977e368a95d2af2159545 /llvm/lib | |
| parent | d79102d6f2480dda99be3a930644ac74e0cc6c32 (diff) | |
| download | bcm5719-llvm-3fe18e72b3589b32f2de3c57c6b8b9d866b07190.tar.gz bcm5719-llvm-3fe18e72b3589b32f2de3c57c6b8b9d866b07190.zip | |
Change dbgs() back to errs() for assert messages as Chris requested.
llvm-svn: 92077
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Analysis/ProfileInfoLoaderPass.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp b/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp index 84af53feb50..d8c511f344d 100644 --- a/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp +++ b/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp @@ -161,7 +161,7 @@ bool LoaderPass::runOnModule(Module &M) { } } if (ReadCount != Counters.size()) { - dbgs() << "WARNING: profile information is inconsistent with " + errs() << "WARNING: profile information is inconsistent with " << "the current program!\n"; } NumEdgesRead = ReadCount; @@ -209,7 +209,7 @@ bool LoaderPass::runOnModule(Module &M) { } } if (ReadCount != Counters.size()) { - dbgs() << "WARNING: profile information is inconsistent with " + errs() << "WARNING: profile information is inconsistent with " << "the current program!\n"; } NumEdgesRead = ReadCount; @@ -230,7 +230,7 @@ bool LoaderPass::runOnModule(Module &M) { BlockInformation[F][BB] = (double)Counters[ReadCount++]; } if (ReadCount != Counters.size()) { - dbgs() << "WARNING: profile information is inconsistent with " + errs() << "WARNING: profile information is inconsistent with " << "the current program!\n"; } } @@ -249,7 +249,7 @@ bool LoaderPass::runOnModule(Module &M) { FunctionInformation[F] = (double)Counters[ReadCount++]; } if (ReadCount != Counters.size()) { - dbgs() << "WARNING: profile information is inconsistent with " + errs() << "WARNING: profile information is inconsistent with " << "the current program!\n"; } } |

