Commit d64554f9 by Jakub Jelinek Committed by David S. Miller

longlong.h (__sparc_v9__): Use %rDIGIT instead of %DIGIT where appropriate.

	* longlong.h (__sparc_v9__): Use %rDIGIT instead of %DIGIT where
	appropriate.

From-SVN: r30864
parent bb66adca
1999-12-10 Jakub Jelinek <jakub@redhat.com>
* longlong.h (__sparc_v9__): Use %rDIGIT instead of %DIGIT where
appropriate.
1999-12-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 1999-12-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* c-parse.in (string): With -Wtraditional, warn if ANSI string * c-parse.in (string): With -Wtraditional, warn if ANSI string
......
...@@ -1185,8 +1185,8 @@ UDItype __umulsidi3 (USItype, USItype); ...@@ -1185,8 +1185,8 @@ UDItype __umulsidi3 (USItype, USItype);
#if (defined (__sparc_v9__) || (defined (__sparc__) && defined (__arch64__)) \ #if (defined (__sparc_v9__) || (defined (__sparc__) && defined (__arch64__)) \
|| defined (__sparcv9)) && W_TYPE_SIZE == 64 || defined (__sparcv9)) && W_TYPE_SIZE == 64
#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
__asm__ ("addcc %4,%5,%1 __asm__ ("addcc %r4,%5,%1
add %2,%3,%0 add %r2,%3,%0
bcs,a,pn %%xcc, 1f bcs,a,pn %%xcc, 1f
add %0, 1, %0 add %0, 1, %0
1:" \ 1:" \
...@@ -1199,8 +1199,8 @@ UDItype __umulsidi3 (USItype, USItype); ...@@ -1199,8 +1199,8 @@ UDItype __umulsidi3 (USItype, USItype);
__CLOBBER_CC) __CLOBBER_CC)
#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
__asm__ ("subcc %4,%5,%1 __asm__ ("subcc %r4,%5,%1
sub %2,%3,%0 sub %r2,%3,%0
bcs,a,pn %%xcc, 1f bcs,a,pn %%xcc, 1f
sub %0, 1, %0 sub %0, 1, %0
1:" \ 1:" \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment