pa-defs.m4
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. divert(-1)
  2. dnl  m4 macros for HPPA assembler.
  3. dnl  Copyright 2002 Free Software Foundation, Inc.
  4. dnl
  5. dnl  This file is part of the GNU MP Library.
  6. dnl
  7. dnl  The GNU MP Library is free software; you can redistribute it and/or
  8. dnl  modify it under the terms of the GNU Lesser General Public License as
  9. dnl  published by the Free Software Foundation; either version 3 of the
  10. dnl  License, or (at your option) any later version.
  11. dnl
  12. dnl  The GNU MP Library is distributed in the hope that it will be useful,
  13. dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. dnl  Lesser General Public License for more details.
  16. dnl
  17. dnl  You should have received a copy of the GNU Lesser General Public License
  18. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  19. dnl  hppa assembler comments are introduced with ";".
  20. dnl
  21. dnl  For cooperation with cpp, apparently lines "# 123" set the line number,
  22. dnl  and other lines starting with a "#" are ignored.
  23. changecom(;)
  24. dnl  Called: PROLOGUE_cpu(GSYM_PREFIX`'foo)
  25. dnl          EPILOGUE_cpu(GSYM_PREFIX`'foo)
  26. dnl
  27. dnl  These are the same as the basic PROLOGUE_cpu and EPILOGUE_cpu in
  28. dnl  mpn/asm-defs.m4, but using .proc / .procend.  These are standard and on
  29. dnl  an ELF system they do what .type and .size normally do.
  30. define(`PROLOGUE_cpu',
  31. m4_assert_numargs(1)
  32. `.code
  33. ALIGN(8)
  34. .export `$1',entry
  35. `$1'LABEL_SUFFIX'
  36. .proc
  37. .callinfo) dnl  This is really bogus, but allows us to compile
  38. dnl  again on hppa machines.
  39. define(`EPILOGUE_cpu',
  40. m4_assert_numargs(1)
  41. ` .procend')
  42. divert