aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/lib
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2006-12-13 16:38:37 +0000
committerDave Brolley <brolley@redhat.com>2006-12-13 16:38:37 +0000
commit906156c429ff3edc3034c232da93a0393a366aa8 (patch)
tree662a8f7835a21dd559f68607c138734f0103f710 /ld/testsuite/lib
parentc450d570b0572e8add0dc52df5ae894c4fa08e13 (diff)
downloadfsf-binutils-gdb-906156c429ff3edc3034c232da93a0393a366aa8.zip
fsf-binutils-gdb-906156c429ff3edc3034c232da93a0393a366aa8.tar.gz
fsf-binutils-gdb-906156c429ff3edc3034c232da93a0393a366aa8.tar.bz2
2006-12-13 Dave Brolley <brolley@redhat.com>
* lib/ld-lib.exp (big_or_little_endian): Accept -meb and -mel for big and little endian respectively.
Diffstat (limited to 'ld/testsuite/lib')
-rw-r--r--ld/testsuite/lib/ld-lib.exp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/testsuite/lib/ld-lib.exp b/ld/testsuite/lib/ld-lib.exp
index 4fbe2af..dd42eab 100644
--- a/ld/testsuite/lib/ld-lib.exp
+++ b/ld/testsuite/lib/ld-lib.exp
@@ -90,11 +90,11 @@ proc big_or_little_endian {} {
foreach x $tmp_flags {
case $x in {
- {*big*endian eb EB -eb -EB -mb} {
+ {*big*endian eb EB -eb -EB -mb -meb} {
set flags " -EB"
return $flags
}
- {*little*endian el EL -el -EL -ml} {
+ {*little*endian el EL -el -EL -ml -mel} {
set flags " -EL"
return $flags
}