mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-02 08:26:29 +00:00
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
This commit is contained in:
parent
7e55e0d1f5
commit
526c55c690
@ -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<object_error>(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;
|
||||
|
@ -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;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -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<readobj_error>(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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user