Commit 52bd463c by Richard Guenther Committed by Ira Rosen

re PR tree-optimization/46663 (ICE: SIGSEGV in vect_recog_pow_pattern…

re PR tree-optimization/46663 (ICE: SIGSEGV in vect_recog_pow_pattern (gimple.h:2055) with -O -fexceptions -ftree-vectorize)


	PR tree-optimization/46663
	* tree-vect-patterns.c (vect_recog_pow_pattern): Check that
	FUNCTION_DECL exists and that it's a builtin.


Co-Authored-By: Ira Rosen <irar@il.ibm.com>

From-SVN: r167366
parent bd632dbd
2010-12-02 Richard Guenther <rguenther@suse.de>
Ira Rosen <irar@il.ibm.com>
PR tree-optimization/46663
* tree-vect-patterns.c (vect_recog_pow_pattern): Check that
FUNCTION_DECL exists and that it's a builtin.
2010-12-02 Jie Zhang <jie@codesourcery.com>
PR middle-end/46674
2010-12-02 Richard Guenther <rguenther@suse.de>
Ira Rosen <irar@il.ibm.com>
PR tree-optimization/46663
* gcc.dg/vect/pr46663.c: New test.
2010-12-02 Jie Zhang <jie@codesourcery.com>
PR middle-end/46674
......
/* { dg-do compile } */
/* { dg-options "-O -ftree-vectorize -fdump-tree-vect-details -fexceptions" } */
typedef __attribute__ ((const)) int (*bart) (void);
int foo (bart bar, int m)
{
int i, j = 0;
for (i = 0; i < m; i++)
j += bar();
return j;
}
/* { dg-final { cleanup-tree-dump "vect" } } */
......@@ -472,6 +472,9 @@ vect_recog_pow_pattern (gimple last_stmt, tree *type_in, tree *type_out)
return NULL;
fn = gimple_call_fndecl (last_stmt);
if (fn == NULL_TREE || DECL_BUILT_IN_CLASS (fn) != BUILT_IN_NORMAL)
return NULL;
switch (DECL_FUNCTION_CODE (fn))
{
case BUILT_IN_POWIF:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment