diff options
author | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-27 10:27:39 +0000 |
---|---|---|
committer | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-27 10:27:39 +0000 |
commit | 31ac7341323c04ca2b0b40ba5db47d9c4cb94be1 (patch) | |
tree | 73ad6eb95633d4417f631f17d1389bca7e91e78f /gcc/tree-vect-stmts.c | |
parent | db35a7f00d5fa55c81e2d0e45fa57524f2b7fb38 (diff) | |
download | gcc-31ac7341323c04ca2b0b40ba5db47d9c4cb94be1.tar.gz |
PR 43544, change TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION to take a tree argument
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@157770 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-vect-stmts.c')
-rw-r--r-- | gcc/tree-vect-stmts.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gcc/tree-vect-stmts.c b/gcc/tree-vect-stmts.c index 4bce61afd97..c280e818a89 100644 --- a/gcc/tree-vect-stmts.c +++ b/gcc/tree-vect-stmts.c @@ -1,6 +1,6 @@ /* Statement Analysis and Transformation for Vectorization - Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software - Foundation, Inc. + Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 + Free Software Foundation, Inc. Contributed by Dorit Naishlos <dorit@il.ibm.com> and Ira Rosen <irar@il.ibm.com> @@ -1189,7 +1189,6 @@ tree vectorizable_function (gimple call, tree vectype_out, tree vectype_in) { tree fndecl = gimple_call_fndecl (call); - enum built_in_function code; /* We only handle functions that do not read or clobber memory -- i.e. const or novops ones. */ @@ -1201,8 +1200,7 @@ vectorizable_function (gimple call, tree vectype_out, tree vectype_in) || !DECL_BUILT_IN (fndecl)) return NULL_TREE; - code = DECL_FUNCTION_CODE (fndecl); - return targetm.vectorize.builtin_vectorized_function (code, vectype_out, + return targetm.vectorize.builtin_vectorized_function (fndecl, vectype_out, vectype_in); } |