From: Rafael Espindola Date: Fri, 13 Jun 2014 15:36:17 +0000 (+0000) Subject: Remove unused and odd code. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=cc0d35a2e811dbc69df266322cc80807fa489359;p=oota-llvm.git 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 --- diff --git a/lib/Object/Error.cpp b/lib/Object/Error.cpp index 0a29cac6c4e..9d252697ae5 100644 --- a/lib/Object/Error.cpp +++ b/lib/Object/Error.cpp @@ -22,8 +22,6 @@ class _object_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; }; } @@ -48,13 +46,6 @@ std::string _object_error_category::message(int EV) const { "defined."); } -std::error_condition -_object_error_category::default_error_condition(int EV) const { - if (static_cast(EV) == object_error::success) - return std::error_condition(); - return std::errc::invalid_argument; -} - const std::error_category &object::object_category() { static _object_error_category o; return o; diff --git a/lib/ProfileData/InstrProf.cpp b/lib/ProfileData/InstrProf.cpp index 628edfb86cd..01212227206 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(EV) == instrprof_error::success) - return std::error_condition(); - return std::errc::invalid_argument; - } }; } diff --git a/tools/llvm-readobj/Error.cpp b/tools/llvm-readobj/Error.cpp index 4245e8d561a..a078f5c095c 100644 --- a/tools/llvm-readobj/Error.cpp +++ b/tools/llvm-readobj/Error.cpp @@ -21,8 +21,6 @@ class _readobj_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 @@ -48,13 +46,6 @@ std::string _readobj_error_category::message(int EV) const { "defined."); } -std::error_condition -_readobj_error_category::default_error_condition(int EV) const { - if (static_cast(EV) == readobj_error::success) - return std::error_condition(); - return std::errc::invalid_argument; -} - namespace llvm { const std::error_category &readobj_category() { static _readobj_error_category o; diff --git a/tools/obj2yaml/Error.cpp b/tools/obj2yaml/Error.cpp index 5b07b9cda8d..00741287a64 100644 --- a/tools/obj2yaml/Error.cpp +++ b/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(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;