From: Nick Clifton Date: Fri, 21 Jul 2006 09:46:15 +0000 (+0000) Subject: * config/tc-sh.c (md_longopts): Add -EL and -EB for use by the linker testsuite. X-Git-Tag: newlib-csl-sourcerygxx-3_4_4-25~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=784906c5f159646cf435c0b9ca1f8a4be08936d4;p=external%2Fbinutils.git * config/tc-sh.c (md_longopts): Add -EL and -EB for use by the linker testsuite. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 21ed6ab1..b12b230 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2006-07-21 Nick Clifton + + * config/tc-sh.c (md_longopts): Add -EL and -EB for use by the + linker testsuite. + 2006-07-20 Thiemo Seufer Nigel Stephens diff --git a/gas/config/tc-sh.c b/gas/config/tc-sh.c index 9d651de..554b4cc 100644 --- a/gas/config/tc-sh.c +++ b/gas/config/tc-sh.c @@ -3063,6 +3063,10 @@ struct option md_longopts[] = {"relax", no_argument, NULL, OPTION_RELAX}, {"big", no_argument, NULL, OPTION_BIG}, {"little", no_argument, NULL, OPTION_LITTLE}, + /* The next two switches are here because the + generic parts of the linker testsuite uses them. */ + {"EB", no_argument, NULL, OPTION_BIG}, + {"EL", no_argument, NULL, OPTION_LITTLE}, {"small", no_argument, NULL, OPTION_SMALL}, {"dsp", no_argument, NULL, OPTION_DSP}, {"isa", required_argument, NULL, OPTION_ISA},