aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr50717-1.c
blob: afbe542a2be3ea19304f59a2bf8251b83b418de0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* PR tree-optimization/50717  */
/* Ensure that widening multiply-and-accumulate is not used where integer
   type promotion or users' casts should prevent it.  */

/* { dg-options "-O2 -fdump-tree-widening_mul" } */

long long
f (unsigned int a, char b, long long c)
{
  return (a * b) + c;
}

int
g (short a, short b, int c)
{
  return (short)(a * b) + c;
}

int
h (char a, char b, int c)
{
  return (char)(a * b) + c;
}

/* { dg-final { scan-tree-dump-times "WIDEN_MULT_PLUS_EXPR" 0 "widening_mul" } } */
/* { dg-final { cleanup-tree-dump "widening_mul" } } */