dwarf.h 602 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (C) 2016 Helge Deller <deller@gmx.de>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #ifndef _ASM_PARISC_DWARF_H
  9. #define _ASM_PARISC_DWARF_H
  10. #ifdef __ASSEMBLY__
  11. #define CFI_STARTPROC .cfi_startproc
  12. #define CFI_ENDPROC .cfi_endproc
  13. #define CFI_DEF_CFA .cfi_def_cfa
  14. #define CFI_REGISTER .cfi_register
  15. #define CFI_REL_OFFSET .cfi_rel_offset
  16. #define CFI_UNDEFINED .cfi_undefined
  17. #endif /* __ASSEMBLY__ */
  18. #endif /* _ASM_PARISC_DWARF_H */