diff options
| author | Mark Wielaard <[email protected]> | 2010-05-31 15:39:15 +0200 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2010-06-01 23:08:08 +0200 |
| commit | 08e71dbedcd97273432d55ab0e4c476c287a5aa6 (patch) | |
| tree | d898722d2634ca4e494020798d46824bace10daf | |
| parent | 7a5bed8919f2a1dace847a33a78dbbb86a8e7eb9 (diff) | |
Move dwarf_cfi_cie_p definition from cfi.h to libdw.h.
| -rw-r--r-- | libdw/ChangeLog | 5 | ||||
| -rw-r--r-- | libdw/cfi.h | 2 | ||||
| -rw-r--r-- | libdw/libdw.h | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/libdw/ChangeLog b/libdw/ChangeLog index 125f78b9..ead4397c 100644 --- a/libdw/ChangeLog +++ b/libdw/ChangeLog @@ -1,5 +1,10 @@ 2010-05-31 Mark Wielaard <[email protected]> + * cfi.h (dwarf_cfi_cie_p): Move definition from here, to .. + * libdw.h (dwarf_cfi_cie_p): ... here. + +2010-05-31 Mark Wielaard <[email protected]> + * dwarf.h: Fix DW_LANG_Python constant. 2010-05-28 Eduardo Santiago <[email protected]> diff --git a/libdw/cfi.h b/libdw/cfi.h index e04e76dd..6aaa9c8a 100644 --- a/libdw/cfi.h +++ b/libdw/cfi.h @@ -54,8 +54,6 @@ #include "libelfP.h" struct ebl; -#define dwarf_cfi_cie_p(entry) ((entry)->cie.CIE_id == DW_CIE_ID_64) - /* Cached CIE representation. */ struct dwarf_cie { diff --git a/libdw/libdw.h b/libdw/libdw.h index 94320c7b..252361fc 100644 --- a/libdw/libdw.h +++ b/libdw/libdw.h @@ -247,6 +247,8 @@ typedef union Dwarf_FDE fde; } Dwarf_CFI_Entry; +#define dwarf_cfi_cie_p(entry) ((entry)->cie.CIE_id == DW_CIE_ID_64) + /* Opaque type representing a frame state described by CFI. */ typedef struct Dwarf_Frame_s Dwarf_Frame; |
