summaryrefslogtreecommitdiff
path: root/lib/ProfileData
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-06-13 15:36:17 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-06-13 15:36:17 +0000
commitcc0d35a2e811dbc69df266322cc80807fa489359 (patch)
treee750064c71f49f92c7df3cff7384f23f3ddd029f /lib/ProfileData
parent520ae5c765b5bdabad7a95b698a76f051f78ba69 (diff)
downloadllvm-cc0d35a2e811dbc69df266322cc80807fa489359.tar.gz
llvm-cc0d35a2e811dbc69df266322cc80807fa489359.tar.bz2
llvm-cc0d35a2e811dbc69df266322cc80807fa489359.tar.xz
Remove unused and odd code.
This code was never being used and any use of it would look fairly strange. For example, it would try to map a object_error::parse_failed to std::errc::invalid_argument. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210912 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ProfileData')
-rw-r--r--lib/ProfileData/InstrProf.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/ProfileData/InstrProf.cpp b/lib/ProfileData/InstrProf.cpp
index 628edfb86c..0121222720 100644
--- a/lib/ProfileData/InstrProf.cpp
+++ b/lib/ProfileData/InstrProf.cpp
@@ -52,12 +52,6 @@ class InstrProfErrorCategoryType : public std::error_category {
}
llvm_unreachable("A value of instrprof_error has no message.");
}
- std::error_condition
- default_error_condition(int EV) const LLVM_NOEXCEPT override {
- if (static_cast<instrprof_error>(EV) == instrprof_error::success)
- return std::error_condition();
- return std::errc::invalid_argument;
- }
};
}