From: Hans-Peter Nilsson Date: Tue, 26 Aug 2008 16:36:34 +0000 (+0000) Subject: opts.c (decode_options): Add missing parameter to inform call. X-Git-Tag: releases/gcc-4.4.0~2872 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=69abac819faaf3fb2f72fa23890bb5febf872e06;p=thirdparty%2Fgcc.git opts.c (decode_options): Add missing parameter to inform call. * opts.c (decode_options) [!IRA_COVER_CLASSES]: Add missing parameter to inform call. From-SVN: r139601 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 876805354fd4..1d84e073a7ba 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2008-08-26 Hans-Peter Nilsson + + * opts.c (decode_options) [!IRA_COVER_CLASSES]: Add missing + parameter to inform call. + 2008-08-26 Jeff Law * mn10300.md (movqi, movhi): Split i->d*a case into two cases to diff --git a/gcc/opts.c b/gcc/opts.c index badc0a1a6cd8..b759e2fc9225 100644 --- a/gcc/opts.c +++ b/gcc/opts.c @@ -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