* tree-eh.c (tree_could_trap_p): Handle VIEW_CONVERT_EXPR.
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 18 Feb 2007 14:03:24 +0000 (14:03 +0000)
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 18 Feb 2007 14:03:24 +0000 (14:03 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@122097 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/tree-eh.c

index 99b01ab..b01cccf 100644 (file)
@@ -1,5 +1,9 @@
 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
        for arg pointer based indexed addressing.
 
index cfd99bc..bb276fb 100644 (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);