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 9 #ifndef _ASM_PARISC_DWARF_H 10 #define _ASM_PARISC_DWARF_H 11 12 #ifdef __ASSEMBLY__ 13 14 #define CFI_STARTPROC .cfi_startproc 15 #define CFI_ENDPROC .cfi_endproc 16 #define CFI_DEF_CFA .cfi_def_cfa 17 #define CFI_REGISTER .cfi_register 18 #define CFI_REL_OFFSET .cfi_rel_offset 19 #define CFI_UNDEFINED .cfi_undefined 20 21 #endif /* __ASSEMBLY__ */ 22 23 #endif /* _ASM_PARISC_DWARF_H */ 24