| 904 | bytes. */ |
| 905 | |
| 906 | static uint64_t |
| 907 | read_offset (struct dwarf_buf *buf, int is_dwarf64) |
| 908 | { |
| 909 | if (is_dwarf64) |
| 910 | return read_uint64 (buf); |
| 911 | else |
| 912 | return read_uint32 (buf); |
| 913 | } |
| 914 | |
| 915 | /* Read an address from BUF and advance the appropriate number of |
| 916 | bytes. */ |
no test coverage detected