This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[MIPS PATCH RFA] adjust assembler msg check in mips-no-jalxtest.


Existing test doesn't account for the fact that the toolchain might be
configured to have a default CPU type (i.e., other than the ISA).
Problem discovered on sb1-elf (mipsisa64sb1-elf).

Tested and found to have no new failures w/ binutils 'make check' on:

targets=""
targets="$targets mips-elf mips64-elf"
targets="$targets mipsel-elf mips64el-elf"
targets="$targets mips-linux mipsel-linux"
targets="$targets mips-netbsd mipsel-netbsd"
targets="$targets mips64-linux mips64el-linux"
targets="$targets mipsisa32-elf mipsisa64-elf"
targets="$targets sb1-elf sb1el-elf"

("why?  Because somebody let me at a decently fast PC."  8-)


cgd
=======
2002-10-01  Chris Demetriou  <cgd@broadcom.com>

	* gas/mips/mips-no-jalx.l: Make error message regexps accomodate
	tools which target a specific CPU by default.

Index: gas/mips/mips-no-jalx.l
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/mips/mips-no-jalx.l,v
retrieving revision 1.1
diff -u -p -r1.1 mips-no-jalx.l
--- gas/mips/mips-no-jalx.l	26 Sep 2002 09:56:33 -0000	1.1
+++ gas/mips/mips-no-jalx.l	1 Oct 2002 18:35:17 -0000
@@ -1,2 +1,2 @@
 .*: Assembler messages:
-.*:3: Error: opcode not supported at this ISA level \(mips.*\) `jalx external_label'
+.*:3: Error: opcode not supported (at this ISA level|on this processor: .*) \(mips.*\) `jalx external_label'


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]