diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/dwarf2out.c | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6be32d73..440b475 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2004-10-14 Richard Henderson <rth@redhat.com> + PR debug/14492 + * dwarf2out.c (loc_descriptor_from_tree_1): Handle FIX_*_EXPR. + +2004-10-14 Richard Henderson <rth@redhat.com> + PR c/17023 * c-decl.c (store_parm_decls_oldstyle): Care for parameter type as error_mark_node. diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 75e328d..f4c5974 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -9171,6 +9171,12 @@ loc_descriptor_from_tree_1 (tree loc, int want_address) } break; + case FIX_TRUNC_EXPR: + case FIX_CEIL_EXPR: + case FIX_FLOOR_EXPR: + case FIX_ROUND_EXPR: + return 0; + default: /* Leave front-end specific codes as simply unknown. This comes up, for instance, with the C STMT_EXPR. */ |
