diff options
author | Torbjorn Granlund <tege@gnu.org> | 1992-10-28 19:35:55 +0000 |
---|---|---|
committer | Torbjorn Granlund <tege@gnu.org> | 1992-10-28 19:35:55 +0000 |
commit | 7691f55974ea73d02416ed9ee4cb8a50117e9bed (patch) | |
tree | a4c00c7ab47b55ea3de9844c45f218b1cfabd855 /gcc | |
parent | e45d9b98ee5759a7a36d096ed64e37fc926ba849 (diff) | |
download | gcc-7691f55974ea73d02416ed9ee4cb8a50117e9bed.zip gcc-7691f55974ea73d02416ed9ee4cb8a50117e9bed.tar.gz gcc-7691f55974ea73d02416ed9ee4cb8a50117e9bed.tar.bz2 |
(__hppa sub_ddmmss): Swap input operands.
From-SVN: r2629
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/longlong.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/longlong.h b/gcc/longlong.h index 0c248da..522ac28 100644 --- a/gcc/longlong.h +++ b/gcc/longlong.h @@ -201,8 +201,8 @@ "%rM" ((USItype)(al)), \ "rM" ((USItype)(bl))) #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ - __asm__ ("sub %5,%4,%1 - subb %3,%2,%0" \ + __asm__ ("sub %4,%5,%1 + subb %2,%3,%0" \ : "=r" ((USItype)(sh)), \ "=&r" ((USItype)(sl)) \ : "rM" ((USItype)(ah)), \ |