aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr52134.c
blob: 44cb4a6f3dea2d0e442707b07187dced293d3b30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-fdump-tree-original" } */

unsigned f(unsigned t)
{
    return (t*4)&-4;
}
int f1(int t)
{
    return (t*4)&-4;
}

/* { dg-final { scan-tree-dump-not "\\\&" "original" } } */
/* { dg-final { cleanup-tree-dump "original" } } */