diff options
author | Nick Clifton <nickc@redhat.com> | 2006-07-21 09:46:15 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2006-07-21 09:46:15 +0000 |
commit | 784906c5f159646cf435c0b9ca1f8a4be08936d4 (patch) | |
tree | 4a941de0dc5043988816d493314df17b55eb614a /gas/config/tc-sh.c | |
parent | 4c6dbf3a9b702915f1c65642834a15cb1470d8b6 (diff) | |
download | gdb-784906c5f159646cf435c0b9ca1f8a4be08936d4.zip gdb-784906c5f159646cf435c0b9ca1f8a4be08936d4.tar.gz gdb-784906c5f159646cf435c0b9ca1f8a4be08936d4.tar.bz2 |
* config/tc-sh.c (md_longopts): Add -EL and -EB for use by the linker testsuite.
Diffstat (limited to 'gas/config/tc-sh.c')
-rw-r--r-- | gas/config/tc-sh.c | 4 |
1 files changed, 4 insertions, 0 deletions
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}, |