This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC 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]

Committed: fix build failure for non-IRA_COVER_CLASSES


Committed as obvious after checking that build succeeds (and
continues into test-run) for cris-elf.  Yeah I know, better
start checking what how that IRA stuff affects things,
apparently not much testing on non-IRA targets...

	* opts.c (decode_options) [!IRA_COVER_CLASSES]: Add missing
	parameter to inform call.

Index: opts.c
===================================================================
--- opts.c	(revision 139597)
+++ opts.c	(working copy)
@@ -1127,7 +1127,7 @@ decode_options (unsigned int argc, const
 #ifndef IRA_COVER_CLASSES
   if (flag_ira)
     {
-      inform ("-fira does not work on this architecture");
+      inform (input_location, "-fira does not work on this architecture");
       flag_ira = 0;
     }
 #endif

brgds, H-P


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