This is the mail archive of the binutils@sourceware.cygnus.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]

A typo in ld/lexsup.c?


Hi, Nick,

Is there a typo in ld/lexsup.c? I checked in this patch. Let me know
if it is intentional.

Thanks.


-- 
H.J. Lu (hjl@gnu.org)
---
2000-05-18  H.J. Lu  <hjl@gnu.org>

	* lexsup.c (parse_args): `i' == `r', not `q'.

Index: lexsup.c
===================================================================
RCS file: /cvs/src/src/ld/lexsup.c,v
retrieving revision 1.13
diff -u -p -r1.13 lexsup.c
--- lexsup.c	2000/05/17 19:53:11	1.13
+++ lexsup.c	2000/05/18 21:58:11
@@ -718,10 +718,10 @@ parse_args (argc, argv)
 	case OPTION_OFORMAT:
 	  lang_add_output_format (optarg, (char *) NULL, (char *) NULL, 0);
 	  break;
-	case 'i':
 	case 'q':
 	  link_info.emitrelocations = true;
 	  break;
+	case 'i':
 	case 'r':
 	  link_info.relocateable = true;
 	  config.build_constructors = false;

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