2010-01-22 Viktor Kutuzov <vkutuzov@accesssoftek.com>

* gold/arm.cc (Target_arm): Updated fix_v4bx method and usage of
	Fix_v4bx enum values .
	* gold/options.h (General_options): New option definitions.
	(General_options::fix_v4bx): New method.
	(General_options::Fix_v4bx): New enum.
	* gold/options.cc (General_options::parse_fix_v4bx): New method.
	(General_options::parse_fix_v4bx_interworking): New method.
This commit is contained in:
Doug Kwan
2010-01-22 19:43:00 +00:00
parent 80d0d023f5
commit 9b2fd36756
4 changed files with 64 additions and 11 deletions

View File

@@ -586,6 +586,20 @@ General_options::string_to_object_format(const char* arg)
}
}
void
General_options::parse_fix_v4bx(const char*, const char*,
Command_line*)
{
this->fix_v4bx_ = FIX_V4BX_REPLACE;
}
void
General_options::parse_fix_v4bx_interworking(const char*, const char*,
Command_line*)
{
this->fix_v4bx_ = FIX_V4BX_INTERWORKING;
}
} // End namespace gold.
namespace