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]

Re: Has anyone run "make check" on ia64?


On Sun, Feb 04, 2001 at 06:40:30PM -0800, H . J . Lu wrote:
> I got quite a few failures on ia64:
> 
> Running /work/gnu/src/binutils/gas/testsuite/gas/all/gas.exp ...
> FAIL: comment.s: comments in listings
> FAIL: difference between forward references
> FAIL: conditional listings

Here is a patch for the failures above.

H.J.
----
2001-02-04  H.J. Lu  <hjl@gnu.org>

	* config/tc-ia64.c (md_parse_option): Only accept the valid
	ia64 options on "-axxx".

Index: config/tc-ia64.c
===================================================================
RCS file: /work/cvs/gnu/binutils/gas/config/tc-ia64.c,v
retrieving revision 1.1.1.25
diff -u -p -r1.1.1.25 tc-ia64.c
--- config/tc-ia64.c	2001/01/23 19:00:11	1.1.1.25
+++ config/tc-ia64.c	2001/02/05 03:01:45
@@ -5831,12 +5831,13 @@ md_parse_option (c, arg)
       break;
 
     case 'a':
-      /* ??? Conflicts with gas' listing option.  */
       /* indirect=<tgt>	Assume unannotated indirect branches behavior
 			according to <tgt> --
 			exit:	branch out from the current context (default)
 			labels:	all labels in context may be branch targets
        */
+      if (strncmp (arg, "indirect=", 9) != 0)
+        return 0;
       break;
 
     case 'x':

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