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]

[PATCH, committed] Remove extra newline from my Oct. 11th change


In doing my next round of lazy builtins I noticed I had accidently put in an
extra new line into builtins.c.  I committed this patch as being obvious after
doing a bootstrap:

2011-10-24  Michael Meissner  <meissner@linux.vnet.ibm.com>

	* builtins.c (set_builtin_user_assembler_name): Remove extra
	newline added in October 11th, 2011 change.

Index: gcc/builtins.c
===================================================================
--- gcc/builtins.c	(revision 180405)
+++ gcc/builtins.c	(working copy)
@@ -13499,8 +13499,7 @@ set_builtin_user_assembler_name (tree de
 	      && asmspec != 0);
 
   builtin = builtin_decl_explicit (DECL_FUNCTION_CODE (decl));
-  set_user_assembler_name (
-builtin, asmspec);
+  set_user_assembler_name (builtin, asmspec);
   switch (DECL_FUNCTION_CODE (decl))
     {
     case BUILT_IN_MEMCPY:


-- 
Michael Meissner, IBM
5 Technology Place Drive, M/S 2757, Westford, MA 01886-3141, USA
meissner@linux.vnet.ibm.com	fax +1 (978) 399-6899


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