ada-typeprint.c (print_range): Initialize lo,hi for gcc -Wall.

* ada-typeprint.c (print_range): Initialize lo,hi for gcc -Wall.
This commit is contained in:
Doug Evans 2014-08-18 10:04:18 -07:00
parent 3ce3a066e1
commit ded4fc8f9c
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-08-18 Doug Evans <dje@google.com>
* ada-typeprint.c (print_range): Initialize lo,hi for gcc -Wall.
2014-08-18 Joel Brobecker <brobecker@adacore.com>
* ada-typeprint.c (type_is_full_subrange_of_target_type):

View File

@ -160,7 +160,7 @@ print_range (struct type *type, struct ui_file *stream,
{
struct type *target_type;
volatile struct gdb_exception e;
LONGEST lo, hi;
LONGEST lo = 0, hi = 0; /* init for gcc -Wall */
target_type = TYPE_TARGET_TYPE (type);
if (target_type == NULL)