public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* Re: Fix unquoted comma in m4 macro argument
@ 2010-09-06 13:55 Dominique Dhumieres
  2010-09-06 14:14 ` Andreas Schwab
  0 siblings, 1 reply; 3+ messages in thread
From: Dominique Dhumieres @ 2010-09-06 13:55 UTC (permalink / raw)
  To: gcc-patches; +Cc: schwab

Andreas,

Is this patch connected to pr45524?

TIA

Dominique

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Fix unquoted comma in m4 macro argument
  2010-09-06 13:55 Fix unquoted comma in m4 macro argument Dominique Dhumieres
@ 2010-09-06 14:14 ` Andreas Schwab
  0 siblings, 0 replies; 3+ messages in thread
From: Andreas Schwab @ 2010-09-06 14:14 UTC (permalink / raw)
  To: Dominique Dhumieres; +Cc: gcc-patches

dominiq@lps.ens.fr (Dominique Dhumieres) writes:

> Is this patch connected to pr45524?

No.

Andreas.

-- 
Andreas Schwab, schwab@redhat.com
GPG Key fingerprint = D4E8 DBE3 3813 BB5D FA84  5EC7 45C6 250E 6F00 984E
"And now for something completely different."

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Fix unquoted comma in m4 macro argument
@ 2010-09-06 11:07 Andreas Schwab
  0 siblings, 0 replies; 3+ messages in thread
From: Andreas Schwab @ 2010-09-06 11:07 UTC (permalink / raw)
  To: gcc-patches

Commas in m4 macro arguments need to be quoted.  Committed as obvious.

Andreas.

2010-09-06  Andreas Schwab  <schwab@redhat.com>

config/:
	* dfp.m4: Quote argument of AC_MSG_WARN.

gcc/:
	* configure.ac: Quote argument of AC_MSG_WARN.
	* configure: Regenerate.

libdecnumber/:
	* configure: Regenerate.

libgcc/:
	* configure: Regenerate.

Index: config/dfp.m4
===================================================================
--- config/dfp.m4	(revision 163907)
+++ config/dfp.m4	(working copy)
@@ -24,7 +24,7 @@
       enable_decimal_float=yes
       ;;
     *)
-      AC_MSG_WARN(decimal float is not supported for this target, ignored)
+      AC_MSG_WARN([decimal float is not supported for this target, ignored])
       enable_decimal_float=no
       ;;
   esac
Index: gcc/configure.ac
===================================================================
--- gcc/configure.ac	(revision 163907)
+++ gcc/configure.ac	(working copy)
@@ -627,7 +627,7 @@
     mips*-*-*)
       case $host in
 	mips*-sgi-irix*)
-	  AC_MSG_WARN(fixed-point is not supported on IRIX, ignored)
+	  AC_MSG_WARN([fixed-point is not supported on IRIX, ignored])
 	  enable_fixed_point=no
 	  ;;
 	*)
@@ -636,7 +636,7 @@
       esac
       ;;
     *)
-      AC_MSG_WARN(fixed-point is not supported for this target, ignored)
+      AC_MSG_WARN([fixed-point is not supported for this target, ignored])
       enable_fixed_point=no
       ;;
   esac

-- 
Andreas Schwab, schwab@redhat.com
GPG Key fingerprint = D4E8 DBE3 3813 BB5D FA84  5EC7 45C6 250E 6F00 984E
"And now for something completely different."

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-09-06 13:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-06 13:55 Fix unquoted comma in m4 macro argument Dominique Dhumieres
2010-09-06 14:14 ` Andreas Schwab
  -- strict thread matches above, loose matches on Subject: below --
2010-09-06 11:07 Andreas Schwab

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).