1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-reassoc1" } */
3 
4 unsigned int
ETree_nFactorEntriesInFront(unsigned int b,unsigned int m)5 ETree_nFactorEntriesInFront (unsigned int b, unsigned int m)
6 {
7   unsigned int nent = b*b + 2*b*m;
8   return nent;
9 }
10 
11 /* { dg-final { scan-tree-dump-times "\\\*" 2 "reassoc1" } } */
12