tree-eh.c (tree_could_trap_p): Handle VIEW_CONVERT_EXPR.

* tree-eh.c (tree_could_trap_p): Handle VIEW_CONVERT_EXPR.

From-SVN: r122097
This commit is contained in:
Eric Botcazou 2007-02-18 14:03:24 +00:00 committed by Eric Botcazou
parent ae22dcff00
commit 483edb9201
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2007-02-18 Eric Botcazou <ebotcazou@adacore.com>
* tree-eh.c (tree_could_trap_p): Handle VIEW_CONVERT_EXPR.
2007-02-18 Eric Botcazou <ebotcazou@adacore.com>
* calls.c (mem_overlaps_already_clobbered_arg_p): Return true

View File

@ -1871,6 +1871,7 @@ tree_could_trap_p (tree expr)
case REALPART_EXPR:
case IMAGPART_EXPR:
case BIT_FIELD_REF:
case VIEW_CONVERT_EXPR:
case WITH_SIZE_EXPR:
expr = TREE_OPERAND (expr, 0);
code = TREE_CODE (expr);