Commit 2175df99 by Tom de Vries Committed by Tom de Vries

Don't call call_cgraph_insertion_hooks in simd_clone_create

2016-02-16  Tom de Vries  <tom@codesourcery.com>

	PR lto/67709
	* omp-low.c (simd_clone_create): Remove call to
	symtab->call_cgraph_insertion_hooks.

	* testsuite/libgomp.fortran/declare-simd-4.f90: New test.

From-SVN: r233447
parent 3824a0a2
2016-02-16 Tom de Vries <tom@codesourcery.com>
PR lto/67709
* omp-low.c (simd_clone_create): Remove call to
symtab->call_cgraph_insertion_hooks.
2016-02-16 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/69802
......
......@@ -18735,7 +18735,6 @@ simd_clone_create (struct cgraph_node *old_node)
new_node = old_node->create_version_clone (new_decl, vNULL, NULL);
if (old_node->in_other_partition)
new_node->in_other_partition = 1;
symtab->call_cgraph_insertion_hooks (new_node);
}
if (new_node == NULL)
return new_node;
......
2016-02-16 Tom de Vries <tom@codesourcery.com>
PR lto/67709
* testsuite/libgomp.fortran/declare-simd-4.f90: New test.
2016-02-09 Tom de Vries <tom@codesourcery.com>
PR tree-optimization/69599
......
! { dg-do run { target { vect_simd_clones && lto } } }
! { dg-options "-fno-inline -flto -fno-use-linker-plugin" }
! { dg-additional-sources declare-simd-3.f90 }
! { dg-additional-options "-msse2" { target sse2_runtime } }
! { dg-additional-options "-mavx" { target avx_runtime } }
include 'declare-simd-2.f90'
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