1 /*
2 
3   Copyright (C) 2000,2004 Silicon Graphics, Inc.  All Rights Reserved.
4 
5   This program is free software; you can redistribute it and/or modify it
6   under the terms of version 2.1 of the GNU Lesser General Public License
7   as published by the Free Software Foundation.
8 
9   This program is distributed in the hope that it would be useful, but
10   WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 
13   Further, this software is distributed without any warranty that it is
14   free of the rightful claim of any third person regarding infringement
15   or the like.  Any license provided herein, whether implied or
16   otherwise, applies only to this software file.  Patent licenses, if
17   any, provided herein do not apply to combinations of this program with
18   other software, or any other product whatsoever.
19 
20   You should have received a copy of the GNU Lesser General Public
21   License along with this program; if not, write the Free Software
22   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston MA 02110-1301,
23   USA.
24 
25 */
26 
27 
28 #define	MAXIMUM_LOC_EXPR_LENGTH		20
29 
30 struct Dwarf_P_Expr_s {
31     Dwarf_Small ex_byte_stream[MAXIMUM_LOC_EXPR_LENGTH];
32     Dwarf_P_Debug ex_dbg;
33     Dwarf_Unsigned ex_next_byte_offset;
34     Dwarf_Unsigned ex_reloc_sym_index;
35     Dwarf_Unsigned ex_reloc_offset;
36 };
37