2011-03-05 Michael Snyder <msnyder@vmware.com>

* source.c (add_path): Replace semicolon at end of block.
	* dwarf2expr.c (execute_stack_op): Ditto.
This commit is contained in:
Michael Snyder 2011-03-06 01:32:47 +00:00
parent 5387a0c698
commit b27cf2b3df
3 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2011-03-05 Michael Snyder <msnyder@vmware.com>
* source.c (add_path): Replace semicolon at end of block.
* dwarf2expr.c (execute_stack_op): Ditto.
2011-03-05 Mike Frysinger <vapier@gentoo.org> 2011-03-05 Mike Frysinger <vapier@gentoo.org>
* bfin-tdep.c: Include sim-regno.h and gdb/sim-bfin.h. * bfin-tdep.c: Include sim-regno.h and gdb/sim-bfin.h.

View file

@ -912,6 +912,7 @@ execute_stack_op (struct dwarf_expr_context *ctx,
/* Most things push a result value. */ /* Most things push a result value. */
dwarf_expr_push (ctx, result, in_stack_memory); dwarf_expr_push (ctx, result, in_stack_memory);
no_push: no_push:
;
} }
/* To simplify our main caller, if the result is an implicit /* To simplify our main caller, if the result is an implicit

View file

@ -626,6 +626,7 @@ add_path (char *dirname, char **which_path, int parse_separators)
} }
} }
skip_dup: skip_dup:
;
} }
while (arg != NULL); while (arg != NULL);
} }