summaryrefslogtreecommitdiffstats
path: root/llvm/tools/obj2yaml
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
commit54f199797923764acc7a5d49f6523a887babfa9e (patch)
tree63cb61f96da489189bea20ebf597215e02651352 /llvm/tools/obj2yaml
parentefb3822ac5217b9ce8e22aed2bfda09c0ed831b2 (diff)
downloadbcm5719-llvm-54f199797923764acc7a5d49f6523a887babfa9e.tar.gz
bcm5719-llvm-54f199797923764acc7a5d49f6523a887babfa9e.zip
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. llvm-svn: 210912
Diffstat (limited to 'llvm/tools/obj2yaml')
-rw-r--r--llvm/tools/obj2yaml/Error.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/tools/obj2yaml/Error.cpp b/llvm/tools/obj2yaml/Error.cpp
index 5b07b9cda8d..00741287a64 100644
--- a/llvm/tools/obj2yaml/Error.cpp
+++ b/llvm/tools/obj2yaml/Error.cpp
@@ -17,8 +17,6 @@ class _obj2yaml_error_category : public std::error_category {
public:
const char *name() const LLVM_NOEXCEPT override;
std::string message(int ev) const override;
- std::error_condition
- default_error_condition(int ev) const LLVM_NOEXCEPT override;
};
} // namespace
@@ -39,13 +37,6 @@ std::string _obj2yaml_error_category::message(int ev) const {
"defined.");
}
-std::error_condition
-_obj2yaml_error_category::default_error_condition(int ev) const {
- if (static_cast<obj2yaml_error>(ev) == obj2yaml_error::success)
- return std::error_condition();
- return std::errc::invalid_argument;
-}
-
namespace llvm {
const std::error_category &obj2yaml_category() {
static _obj2yaml_error_category o;
OpenPOWER on IntegriCloud