diff options
Diffstat (limited to 'llvm/lib/ProfileData/InstrProf.cpp')
-rw-r--r-- | llvm/lib/ProfileData/InstrProf.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/ProfileData/InstrProf.cpp b/llvm/lib/ProfileData/InstrProf.cpp index ecabdd75bdf..850f61354e3 100644 --- a/llvm/lib/ProfileData/InstrProf.cpp +++ b/llvm/lib/ProfileData/InstrProf.cpp @@ -29,6 +29,8 @@ class InstrProfErrorCategoryType : public error_category { return "End of File"; case instrprof_error::bad_magic: return "Invalid file format (bad magic)"; + case instrprof_error::bad_header: + return "Invalid header"; case instrprof_error::unsupported_version: return "Unsupported format version"; case instrprof_error::too_large: |