diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/loop-unswitch-2.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/loop-unswitch-2.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/loop-unswitch-2.c b/gcc/testsuite/gcc.dg/loop-unswitch-2.c new file mode 100644 index 0000000..5ebf608 --- /dev/null +++ b/gcc/testsuite/gcc.dg/loop-unswitch-2.c @@ -0,0 +1,15 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -funswitch-loops -fdump-tree-unswitch-details" } */ + +void foo (float **a, float **b, float *c, int n, int m, int l) +{ + int i,j,k; + float s; + for (i=0; i<l; i++) + for (j=0; j<n; j++) + for (k=0; k<m; k++) + c[i] += a[i][k] * b[k][j]; +} + +/* { dg-final { scan-tree-dump-times "guard hoisted" 2 "unswitch" } } */ + |