diff --git a/lib/Analysis/ProfileInfoLoaderPass.cpp b/lib/Analysis/ProfileInfoLoaderPass.cpp index 84af53feb50..d8c511f344d 100644 --- a/lib/Analysis/ProfileInfoLoaderPass.cpp +++ b/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"; } }