]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
opts.c (decode_options): Add missing parameter to inform call.
authorHans-Peter Nilsson <hp@axis.com>
Tue, 26 Aug 2008 16:36:34 +0000 (16:36 +0000)
committerHans-Peter Nilsson <hp@gcc.gnu.org>
Tue, 26 Aug 2008 16:36:34 +0000 (16:36 +0000)
* opts.c (decode_options) [!IRA_COVER_CLASSES]: Add missing
parameter to inform call.

From-SVN: r139601

gcc/ChangeLog
gcc/opts.c

index 876805354fd4760dbe314406ec58c94a274bc2ab..1d84e073a7ba1d9ae30d09df9d6b1870e639cf0d 100644 (file)
@@ -1,3 +1,8 @@
+2008-08-26  Hans-Peter Nilsson  <hp@axis.com>
+
+       * opts.c (decode_options) [!IRA_COVER_CLASSES]: Add missing
+       parameter to inform call.
+
 2008-08-26  Jeff Law  <law@redhat.com>
 
        * mn10300.md (movqi, movhi): Split i->d*a case into two cases to
index badc0a1a6cd8589b398182be56f2880a6da873ee..b759e2fc9225eb1b651bc02399bb719fcbfd1b70 100644 (file)
@@ -1127,7 +1127,7 @@ decode_options (unsigned int argc, const char **argv)
 #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