line is 4. Fix tests for LISTING_WORD_SIZE==1.
+2000-03-28 Alan Modra <alan@linuxcare.com.au>
+
+ * listing.c (LISTING_LHS_WIDTH): Default depends on
+ LISTING_WORD_SIZE.
+ (LISTING_LHS_WIDTH_SECOND): Default to LISTING_LHS_WIDTH.
+
2000-03-27 Ian Lance Taylor <ian@zembu.com>
* config/tc-sh.c (md_show_usage): Use backslash before newline in
string literal.
-2000-03-27 Alan Modra <alan@linuxcare.com>
+2000-03-27 Alan Modra <alan@linuxcare.com.au>
* config/tc-avr.h (TC_HANDLES_FX_DONE): Define.
* internals.texi: Document new macro hooks.
* as.h: New prototypes added.
-2000-03-26 Alan Modra <alan@linuxcare.com>
+2000-03-26 Alan Modra <alan@linuxcare.com.au>
* config/tc-i386.c: Don't start any as_bad or as_warn message with
an initial capital letter.
#define LISTING_WORD_SIZE 4
#endif
#ifndef LISTING_LHS_WIDTH
-#define LISTING_LHS_WIDTH 1
+#define LISTING_LHS_WIDTH ((LISTING_WORD_SIZE) > 4 ? 1 : 4 / (LISTING_WORD_SIZE))
#endif
#ifndef LISTING_LHS_WIDTH_SECOND
-#define LISTING_LHS_WIDTH_SECOND 1
+#define LISTING_LHS_WIDTH_SECOND LISTING_LHS_WIDTH
#endif
#ifndef LISTING_RHS_WIDTH
#define LISTING_RHS_WIDTH 100
+2000-03-27 Alan Modra <alan@linuxcare.com.au>
+
+ * gas/ieee-fp/x930509a.exp (dotest): Fix test for
+ LISTING_WORD_SIZE==1.
+ * gas/all/gas.exp (do_930509a): Same here.
+ * gas/all/cond.d: And here.
+
2000-03-10 Geoffrey Keating <geoffk@cygnus.com>
* gas/mips/empic.d: New file.
8[ ]+.else
9[ ]+.if 1
10[ ]+.endc
- 11 0000 0[02]00 ?000[02][ ]+.long[ ]+2
+ 11 0000 0[02] ?00 ?00 ?0[02][ ]+.long[ ]+2
12[ ]+.if 0
14[ ]+.else
- 15 0004 0[04]00 ?000[04][ ]+.long[ ]+4
+ 15 0004 0[04] ?00 ?00 ?0[04][ ]+.long[ ]+4
16[ ]+.endc
17[ ]+.endc
- 18 0008 0000 ?0000[ ]+.p2align 5,0
- 18[ ]+0000 ?0000
- 18[ ]+0000 ?0000
- 18[ ]+0000 ?0000
- 18[ ]+0000 ?0000
+ 18 0008 00 ?00 ?00 ?00[ ]+.p2align 5,0
+ 18[ ]+00 ?00 ?00 ?00
+ 18[ ]+00 ?00 ?00 ?00
+ 18[ ]+00 ?00 ?00 ?00
+ 18[ ]+00 ?00 ?00 ?00
# If ".long" means an 8-byte value on some target someday, this test will have
# to be fixed.
expect {
- -re "^ +1 .... 0000 *0000" { fail $testname; set x 1 }
- -re "^ +1 .... 0400 *0000" { pass $testname; set x 1 }
- -re "^ +1 .... 0000 *0004" { pass $testname; set x 1 }
+ -re "^ +1 .... 00 ?00 ?00 ?00" { fail $testname; set x 1 }
+ -re "^ +1 .... 04 ?00 ?00 ?00" { pass $testname; set x 1 }
+ -re "^ +1 .... 00 ?00 ?00 ?04" { pass $testname; set x 1 }
-re "\[^\n\]*\n" { }
timeout { perror "timeout\n"; break }
eof { break }
global subdir
set testname "conditional listings"
- gas_run cond.s -alc ">dump.out"
+ gas_run cond.s "-alc" ">dump.out"
if ![string match "" $comp_output] {
send_log "$comp_output\n"
fail $testname
gas_start "x930509a.s" "-al"
while 1 {
expect {
- -re " 00008000\[ \]+.single" { pass $testname; set x 1 }
- -re " 00800000\[ \]+.single" { pass $testname; set x 1 }
- -re " 0080 0000\[ \]+.single" { pass $testname; set x 1 }
- -re " ........ +.single" { fail $testname; set x 1 }
+ -re " 00 ?00 ?80 ?00\[ \]+.single" { pass $testname; set x 1 }
+ -re " 00 ?80 ?00 ?00\[ \]+.single" { pass $testname; set x 1 }
+ -re ".single" { fail $testname; set x 1 }
-re "\[^\n\]*\n" { }
timeout { perror "timeout\n"; break }
eof { break }