diff options
author | andrew <andrew@FreeBSD.org> | 2012-12-15 21:06:14 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2012-12-15 21:06:14 +0000 |
commit | 313cc8ff7ca3acaadee3496dcf22dd7902f6fda1 (patch) | |
tree | be12beea85a003dd4e2c4dc093a0d55565d7708c /contrib/gcc | |
parent | 6ae87790328612368a591aafd4b04c0db7aefec6 (diff) | |
download | FreeBSD-src-313cc8ff7ca3acaadee3496dcf22dd7902f6fda1.zip FreeBSD-src-313cc8ff7ca3acaadee3496dcf22dd7902f6fda1.tar.gz |
Fix a comment in an asm block to work with compilers other than GCC
Diffstat (limited to 'contrib/gcc')
-rw-r--r-- | contrib/gcc/longlong.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gcc/longlong.h b/contrib/gcc/longlong.h index a789d16..f91eb52 100644 --- a/contrib/gcc/longlong.h +++ b/contrib/gcc/longlong.h @@ -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" \ |