diff options
author | Andreas Krebbel <Andreas.Krebbel@de.ibm.com> | 2011-06-06 14:34:06 +0000 |
---|---|---|
committer | Andreas Krebbel <krebbel@gcc.gnu.org> | 2011-06-06 14:34:06 +0000 |
commit | 22afe143ce46fe59ddcfb1e4ca014bf89f8892ff (patch) | |
tree | 21033c304b29e1bd49d6ff6efef860a974e7ccb4 /gcc/longlong.h | |
parent | 3906ea1b34ab9967430cd2b9c423815dc532acfe (diff) | |
download | gcc-22afe143ce46fe59ddcfb1e4ca014bf89f8892ff.zip gcc-22afe143ce46fe59ddcfb1e4ca014bf89f8892ff.tar.gz gcc-22afe143ce46fe59ddcfb1e4ca014bf89f8892ff.tar.bz2 |
longlong.h (smul_ppmm): The resulting register pair contains the higher order word first.
2011-06-06 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* longlong.h (smul_ppmm): The resulting register pair contains the
higher order word first.
From-SVN: r174702
Diffstat (limited to 'gcc/longlong.h')
-rw-r--r-- | gcc/longlong.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/longlong.h b/gcc/longlong.h index 5937a48..1bab76d 100644 --- a/gcc/longlong.h +++ b/gcc/longlong.h @@ -349,7 +349,7 @@ UDItype __umulsidi3 (USItype, USItype); __asm__ ("mr\t%%r0,%3" \ : "=r" (r0), "=r" (r1) \ : "r" (r1), "r" (m1)); \ - (xh) = r1; (xl) = r0; \ + (xh) = r0; (xl) = r1; \ } while (0) #define sdiv_qrnnd(q, r, n1, n0, d) \ do { \ |