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/InstrProf.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/InstrProf.cpp')
-rw-r--r-- | llvm/lib/ProfileData/InstrProf.cpp | 12 |
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: |