* gcc.dg/autopar/pr49960.c: Disable partial inlining

From-SVN: r202297
This commit is contained in:
Jan Hubicka 2013-09-06 00:48:48 +02:00 committed by Jan Hubicka
parent 770da0766a
commit 17796c434d
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2013-09-05 Jan Hubicka <jh@suse.cz>
* gcc.dg/autopar/pr49960.c: Disable partial inlining
2013-09-05 Richard Biener <rguenther@suse.de>
PR tree-optimization/58137

View File

@ -1,5 +1,5 @@
/* { dg-do compile } */
/* { dg-options "-O2 -ftree-parallelize-loops=4 -fdump-tree-parloops-details -fdump-tree-optimized" } */
/* { dg-options "-O2 -ftree-parallelize-loops=4 -fdump-tree-parloops-details -fdump-tree-optimized -fno-partial-inlining" } */
#include <stdio.h>
#define MB 100
@ -12,7 +12,9 @@ void MRTRBR(int MA_1, int NA_1, int MB_1)
int i,j, t,k;
/* At the moment we are not able to hoist the loop headers out of the loop
nest. */
nest.
Partial inlining needs to be disabled so we do not optimize this out
of the function body. */
if (MA_1 < 4 || NA_1 < 4 || MB_1 < 4)
return;