Remove unused functions in tc-aarch64.c.

* config/tc-aarch64.c (set_error_kind): Delete.
	(set_error_message): Delete.
This commit is contained in:
Ed Maste 2015-04-02 14:44:59 +01:00 committed by Nick Clifton
parent cafda5977a
commit 726e626a7b
2 changed files with 5 additions and 12 deletions

View File

@ -1,3 +1,8 @@
2015-04-02 Ed Maste <emaste@freebsd.org>
* config/tc-aarch64.c (set_error_kind): Delete.
(set_error_message): Delete.
2015-04-02 H.J. Lu <hongjiu.lu@intel.com>
* configure: Regenerated.

View File

@ -171,24 +171,12 @@ get_error_message (void)
return inst.parsing_error.error;
}
static inline void
set_error_message (const char *error)
{
inst.parsing_error.error = error;
}
static inline enum aarch64_operand_error_kind
get_error_kind (void)
{
return inst.parsing_error.kind;
}
static inline void
set_error_kind (enum aarch64_operand_error_kind kind)
{
inst.parsing_error.kind = kind;
}
static inline void
set_error (enum aarch64_operand_error_kind kind, const char *error)
{