~ubuntu-branches/ubuntu/intrepid/ecl/intrepid

« back to all changes in this revision

Viewing changes to src/gmp/mpn/powerpc64/umul.asm

  • Committer: Bazaar Package Importer
  • Author(s): Peter Van Eynde
  • Date: 2007-04-09 11:51:51 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070409115151-ql8cr0kalzx1jmla
Tags: 0.9i-20070324-2
Upload to unstable. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
dnl PowerPC-64 umul_ppmm -- support for longlong.h
2
2
 
3
 
dnl Copyright 2000, 2001 Free Software Foundation, Inc.
 
3
dnl Copyright 2000, 2001, 2005 Free Software Foundation, Inc.
4
4
dnl
5
5
dnl This file is part of the GNU MP Library.
6
6
dnl
16
16
dnl
17
17
dnl You should have received a copy of the GNU Lesser General Public License
18
18
dnl along with the GNU MP Library; see the file COPYING.LIB.  If not, write
19
 
dnl to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20
 
dnl Boston, MA 02111-1307, USA.
 
19
dnl to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
20
dnl Boston, MA 02110-1301, USA.
21
21
 
22
22
include(`../config.m4')
23
23
 
33
33
        C r5    m2
34
34
 
35
35
        mulld   r0, r4, r5
36
 
        mulhdu  r9, r4, r5
 
36
        mulhdu  r4, r4, r5
37
37
        std     r0, 0(r3)
38
 
        mr      r3, r9
 
38
ifdef(`HAVE_ABI_mode32',
 
39
`       srdi    r3, r4, 32
 
40
',`     mr      r3, r4
 
41
')
39
42
        blr
40
43
 
41
44
EPILOGUE(mpn_umul_ppmm)