diff options
author | Nick Clifton <nickc@redhat.com> | 2003-05-16 16:30:27 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-05-16 16:30:27 +0000 |
commit | 80c7c40aefc1dc3e07a8130ed5b40d91017e292a (patch) | |
tree | b06e51d145551d2126548976741d77cfa64d7c08 /gas/testsuite | |
parent | 71bee782bfd89ad38efaf5e653dc5c36f2673547 (diff) | |
download | gdb-80c7c40aefc1dc3e07a8130ed5b40d91017e292a.zip gdb-80c7c40aefc1dc3e07a8130ed5b40d91017e292a.tar.gz gdb-80c7c40aefc1dc3e07a8130ed5b40d91017e292a.tar.bz2 |
Replace i[3456]86 with i[3-7]86
Diffstat (limited to 'gas/testsuite')
-rw-r--r-- | gas/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gas/testsuite/lib/gas-defs.exp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 2ab1877..d913f2e 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2003-05-16 Kelley Cook <kelleycook@wideopenwest.com> + + * lib/gas-defs.exp: Accept i[3-7]86 variants. + 2003-05-13 Hans-Peter Nilsson <hp@axis.com> * gas/macros/app1.s, gas/macros/app1.d, gas/macros/app2.s, diff --git a/gas/testsuite/lib/gas-defs.exp b/gas/testsuite/lib/gas-defs.exp index 42027d6..5a3af8c 100644 --- a/gas/testsuite/lib/gas-defs.exp +++ b/gas/testsuite/lib/gas-defs.exp @@ -168,7 +168,7 @@ proc gas_init { args } { case "$target_cpu" in { "m68???" { set target_cpu_family m68k } - "i[34]86" { set target_cpu_family i386 } + "i[3-7]86" { set target_cpu_family i386 } default { set target_cpu_family $target_cpu } } |