diff options
Diffstat (limited to 'gdb/ax-general.c')
-rw-r--r-- | gdb/ax-general.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ax-general.c b/gdb/ax-general.c index 30022a376e2..072817d73d4 100644 --- a/gdb/ax-general.c +++ b/gdb/ax-general.c @@ -27,6 +27,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "value.h" +static void grow_expr PARAMS ((struct agent_expr *x, int n)); + +static void append_const PARAMS ((struct agent_expr *x, LONGEST val, int n)); + +static LONGEST read_const PARAMS ((struct agent_expr *x, int o, int n)); + +static void generic_ext PARAMS ((struct agent_expr *x, enum agent_op op, int n)); /* Functions for building expressions. */ |