Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 15 Dec 2012 21:06:14 +0000 (UTC)
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r244273 - head/contrib/gcc
Message-ID:  <201212152106.qBFL6E43036979@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: andrew
Date: Sat Dec 15 21:06:14 2012
New Revision: 244273
URL: http://svnweb.freebsd.org/changeset/base/244273

Log:
  Fix a comment in an asm block to work with compilers other than GCC

Modified:
  head/contrib/gcc/longlong.h

Modified: head/contrib/gcc/longlong.h
==============================================================================
--- head/contrib/gcc/longlong.h	Sat Dec 15 20:04:24 2012	(r244272)
+++ head/contrib/gcc/longlong.h	Sat Dec 15 21:06:14 2012	(r244273)
@@ -205,7 +205,7 @@ UDItype __umulsidi3 (USItype, USItype);
 	     "rI" ((USItype) (bl)) __CLOBBER_CC)
 #define umul_ppmm(xh, xl, a, b) \
 {register USItype __t0, __t1, __t2;					\
-  __asm__ ("%@ Inlined umul_ppmm\n"					\
+  __asm__ ("/* Inlined umul_ppmm */\n"					\
 	   "	mov	%2, %5, lsr #16\n"				\
 	   "	mov	%0, %6, lsr #16\n"				\
 	   "	bic	%3, %5, %2, lsl #16\n"				\



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212152106.qBFL6E43036979>