]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR target/47000 (Failure to inline SSE intrinsics)
authorJan Hubicka <jh@suse.cz>
Tue, 21 Dec 2010 10:30:33 +0000 (11:30 +0100)
committerJan Hubicka <hubicka@gcc.gnu.org>
Tue, 21 Dec 2010 10:30:33 +0000 (10:30 +0000)
PR middle-end/47000
* tree-inline.c (estimate_operator_cost): Handle VIEW_CONVERT_EXPR.

From-SVN: r168108

gcc/ChangeLog
gcc/tree-inline.c

index cbfafbd4be1b1613fdd9c551772f067cf21aa78e..9ac92611379a0c3ce27044f450ae38b3c2b07c19 100644 (file)
@@ -1,3 +1,8 @@
+2010-12-21  Jan Hubicka   <jh@suse.cz>
+
+       PR middle-end/47000
+       * tree-inline.c (estimate_operator_cost): Handle VIEW_CONVERT_EXPR.
+
 2010-12-21  Jie Zhang  <jie@codesourcery.com>
 
        * config/arm/arm-ldmstm.ml: Fix a typo in comment.
index def733fe4669317de5ea5467a20e485dc18e366a..8725ca41953191e7a94806074008f946f798c2e7 100644 (file)
@@ -3281,6 +3281,7 @@ estimate_operator_cost (enum tree_code code, eni_weights *weights,
     CASE_CONVERT:
     case COMPLEX_EXPR:
     case PAREN_EXPR:
+    case VIEW_CONVERT_EXPR:
       return 0;
 
     /* Assign cost of 1 to usual operations.