diff options
author | Nathan Slingerland <slingn@gmail.com> | 2015-11-12 18:39:26 +0000 |
---|---|---|
committer | Nathan Slingerland <slingn@gmail.com> | 2015-11-12 18:39:26 +0000 |
commit | 911ced6bf384dfcb9da007434a951ed2270e8993 (patch) | |
tree | 26a68368949fb91b936b68a18b78cdabde6133bd /llvm/lib/ProfileData/SampleProf.cpp | |
parent | 7aefb5b62324d3b62473c0f508aadf64bb46876d (diff) | |
download | bcm5719-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.cpp | 8 |
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: |