X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fexpression.h;h=02b51f56e0d8d6a2b87d038dc2b9cd1ea61216dc;hb=84e098cdea4eb6a5ddc525a2145ffe66475fa2af;hp=8db4b9d7e2639495804a09a428bdd6628e4a8d72;hpb=a930ebcdf9594d6b6f91b634dceec1b2425a76a0;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/expression.h b/gdb/expression.h index 8db4b9d7e2..02b51f56e0 100644 --- a/gdb/expression.h +++ b/gdb/expression.h @@ -20,6 +20,8 @@ #if !defined (EXPRESSION_H) #define EXPRESSION_H 1 +#include "gdbtypes.h" + /* While parsing expressions we need to track the innermost lexical block that we encounter. In some situations we need to track the innermost block just for symbols, and in other situations we want to track the @@ -66,6 +68,7 @@ enum exp_opcode : uint8_t /* Language specific operators. */ #include "ada-operator.def" +#include "fortran-operator.def" #undef OP @@ -110,7 +113,9 @@ typedef gdb::unique_xmalloc_ptr expression_up; /* From parse.c */ -extern expression_up parse_expression (const char *); +class innermost_block_tracker; +extern expression_up parse_expression (const char *, + innermost_block_tracker * = nullptr); extern expression_up parse_expression_with_language (const char *string, enum language lang); @@ -118,14 +123,10 @@ extern expression_up parse_expression_with_language (const char *string, extern struct type *parse_expression_for_completion (const char *, gdb::unique_xmalloc_ptr *, enum type_code *); +class innermost_block_tracker; extern expression_up parse_exp_1 (const char **, CORE_ADDR pc, const struct block *, int, - innermost_block_tracker_types - = INNERMOST_BLOCK_FOR_SYMBOLS); - -/* For use by parsers; set if we want to parse an expression and - attempt completion. */ -extern int parse_completion; + innermost_block_tracker * = nullptr); /* From eval.c */