dwarf.h 456 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2016 Helge Deller <[email protected]>
  4. */
  5. #ifndef _ASM_PARISC_DWARF_H
  6. #define _ASM_PARISC_DWARF_H
  7. #ifdef __ASSEMBLY__
  8. #define CFI_STARTPROC .cfi_startproc
  9. #define CFI_ENDPROC .cfi_endproc
  10. #define CFI_DEF_CFA .cfi_def_cfa
  11. #define CFI_REGISTER .cfi_register
  12. #define CFI_REL_OFFSET .cfi_rel_offset
  13. #define CFI_UNDEFINED .cfi_undefined
  14. #endif /* __ASSEMBLY__ */
  15. #endif /* _ASM_PARISC_DWARF_H */