diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/dwarf2out.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 06f53bc..207595e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ Fri Oct 20 13:33:16 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> + * dwarf2out.c (add_bound_info): Also ignore COND_EXPR. + * combine.c (struct undo): Change int to unsigned int. (do_SUBST_INT): Args are unsigned int. (make_extraction, force_to_mode): Use proper type when forming mask. diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index b362a1e..689027f 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -8105,6 +8105,7 @@ add_bound_info (subrange_die, bound_attr, bound) case MAX_EXPR: case VAR_DECL: case COMPONENT_REF: + case COND_EXPR: /* ??? These types of bounds can be created by the Ada front end, and it isn't clear how to emit debug info for them. */ break; |