summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ProfileData/InstrProf.cpp
diff options
context:
space:
mode:
authorNathan Slingerland <slingn@gmail.com>2015-11-12 18:39:26 +0000
committerNathan Slingerland <slingn@gmail.com>2015-11-12 18:39:26 +0000
commit911ced6bf384dfcb9da007434a951ed2270e8993 (patch)
tree26a68368949fb91b936b68a18b78cdabde6133bd /llvm/lib/ProfileData/InstrProf.cpp
parent7aefb5b62324d3b62473c0f508aadf64bb46876d (diff)
downloadbcm5719-llvm-911ced6bf384dfcb9da007434a951ed2270e8993.tar.gz
bcm5719-llvm-911ced6bf384dfcb9da007434a951ed2270e8993.zip
reverting r252916 to investigate test failure
llvm-svn: 252921
Diffstat (limited to 'llvm/lib/ProfileData/InstrProf.cpp')
-rw-r--r--llvm/lib/ProfileData/InstrProf.cpp12
1 files changed, 5 insertions, 7 deletions
diff --git a/llvm/lib/ProfileData/InstrProf.cpp b/llvm/lib/ProfileData/InstrProf.cpp
index 762f00b48b6..92a3c251f6e 100644
--- a/llvm/lib/ProfileData/InstrProf.cpp
+++ b/llvm/lib/ProfileData/InstrProf.cpp
@@ -32,22 +32,20 @@ class InstrProfErrorCategoryType : public std::error_category {
return "Success";
case instrprof_error::eof:
return "End of File";
- case instrprof_error::unrecognized_format:
- return "Unrecognized instrumentation profile encoding format";
case instrprof_error::bad_magic:
- return "Invalid instrumentation profile data (bad magic)";
+ return "Invalid profile data (bad magic)";
case instrprof_error::bad_header:
- return "Invalid instrumentation profile data (file header is corrupt)";
+ return "Invalid profile data (file header is corrupt)";
case instrprof_error::unsupported_version:
- return "Unsupported instrumentation profile format version";
+ return "Unsupported profiling format version";
case instrprof_error::unsupported_hash_type:
- return "Unsupported instrumentation profile hash type";
+ return "Unsupported profiling hash";
case instrprof_error::too_large:
return "Too much profile data";
case instrprof_error::truncated:
return "Truncated profile data";
case instrprof_error::malformed:
- return "Malformed instrumentation profile data";
+ return "Malformed profile data";
case instrprof_error::unknown_function:
return "No profile data available for function";
case instrprof_error::hash_mismatch:
OpenPOWER on IntegriCloud