Make dwarf_expr_context::stack_empty_p return a bool

gdb/ChangeLog:

	* dwarf2expr.h (dwarf_expr_context) <stack_empty_p>: Change
	return type to bool.
	* dwarf2expr.c (dwarf_expr_context::stack_empty_p): Likewise.
This commit is contained in:
Simon Marchi
2017-09-14 16:54:37 +02:00
parent 690098826e
commit eccd80d694
3 changed files with 8 additions and 2 deletions

View File

@@ -251,7 +251,7 @@ private:
struct type *address_type () const;
void grow_stack (size_t need);
void push (struct value *value, bool in_stack_memory);
int stack_empty_p () const;
bool stack_empty_p () const;
void add_piece (ULONGEST size, ULONGEST offset);
void execute_stack_op (const gdb_byte *op_ptr, const gdb_byte *op_end);
void pop ();