summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ProfileData/SampleProf.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/SampleProf.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/SampleProf.cpp')
-rw-r--r--llvm/lib/ProfileData/SampleProf.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/ProfileData/SampleProf.cpp b/llvm/lib/ProfileData/SampleProf.cpp
index 856923e164b..b5d3b2d2e55 100644
--- a/llvm/lib/ProfileData/SampleProf.cpp
+++ b/llvm/lib/ProfileData/SampleProf.cpp
@@ -28,17 +28,17 @@ class SampleProfErrorCategoryType : public std::error_category {
case sampleprof_error::success:
return "Success";
case sampleprof_error::bad_magic:
- return "Invalid sample profile data (bad magic)";
+ return "Invalid file format (bad magic)";
case sampleprof_error::unsupported_version:
- return "Unsupported sample profile format version";
+ return "Unsupported format version";
case sampleprof_error::too_large:
return "Too much profile data";
case sampleprof_error::truncated:
return "Truncated profile data";
case sampleprof_error::malformed:
- return "Malformed sample profile data";
+ return "Malformed profile data";
case sampleprof_error::unrecognized_format:
- return "Unrecognized sample profile encoding format";
+ return "Unrecognized profile encoding format";
case sampleprof_error::unsupported_writing_format:
return "Profile encoding format unsupported for writing operations";
case sampleprof_error::truncated_name_table:
OpenPOWER on IntegriCloud