diff options
author | Kevin Ryde <user42@zip.com.au> | 2000-04-26 02:45:55 +0200 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2000-04-26 02:45:55 +0200 |
commit | 02cc55b1b71833a43b63009927d42e6c3fbc5713 (patch) | |
tree | 35a1c118e4ffb75e445b76ac39ca8fa70b05e02d /mpn/powerpc32 | |
parent | 6f169a3d86aeb9f0c4f942ba8a8978d16e3f5bd7 (diff) | |
download | gmp-02cc55b1b71833a43b63009927d42e6c3fbc5713.tar.gz |
Name the function mpn_umul_ppmm.
Diffstat (limited to 'mpn/powerpc32')
-rw-r--r-- | mpn/powerpc32/umul.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mpn/powerpc32/umul.asm b/mpn/powerpc32/umul.asm index 0603a14ce..f7b653a37 100644 --- a/mpn/powerpc32/umul.asm +++ b/mpn/powerpc32/umul.asm @@ -23,10 +23,10 @@ dnl MA 02111-1307, USA. include(`../config.m4') ASM_START() -PROLOGUE(umul_ppmm) +PROLOGUE(mpn_umul_ppmm) mullw 0,4,5 mulhwu 9,4,5 stw 0,0(3) mr 3,9 blr -EPILOGUE(umul_ppmm) +EPILOGUE(mpn_umul_ppmm) |