aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/ProfileInfoLoader.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-11 18:20:41 +0000
committerChris Lattner <sabre@nondot.org>2004-02-11 18:20:41 +0000
commitc6fca42a66490dc01b3c79350ab288732df4c855 (patch)
tree108511f6a42131e88f59f040cc737effeee0d60c /lib/Analysis/ProfileInfoLoader.cpp
parent6557262ee7ba7165eca15e42f94f2c4a474c2c7d (diff)
Fix a typeo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11323 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ProfileInfoLoader.cpp')
-rw-r--r--lib/Analysis/ProfileInfoLoader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/ProfileInfoLoader.cpp b/lib/Analysis/ProfileInfoLoader.cpp
index 4ea4ca3b18..39d2b6e036 100644
--- a/lib/Analysis/ProfileInfoLoader.cpp
+++ b/lib/Analysis/ProfileInfoLoader.cpp
@@ -77,7 +77,7 @@ ProfileInfoLoader::ProfileInfoLoader(const char *ToolName,
Module &TheModule) : M(TheModule) {
FILE *F = fopen(Filename.c_str(), "r");
if (F == 0) {
- std::cerr << ToolName << ": Error opening '" << Filename << ": ";
+ std::cerr << ToolName << ": Error opening '" << Filename << "': ";
perror(0);
exit(1);
}