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

int test1(int a)
{
  return ~(unsigned int)a;
}

unsigned int test2(unsigned int b)
{
  return ~(int)b;
}

/* { dg-final { scan-tree-dump-times "~a" 1 "original" } } */
/* { dg-final { scan-tree-dump-times "~b" 1 "original" } } */
/* { dg-final { cleanup-tree-dump "original" } } */