summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr37289.c
blob: 0d2d220cd841f383ef4977c6a895d7e8173d74d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile } */
/* { dg-options "-fdump-tree-original" } */

void f(unsigned long x);

void g(long x)
{
  f((unsigned long)(-1-x)+1);
}

/* Make sure we do not lose the conversion.  */

/* { dg-final { scan-tree-dump "-\\\(long unsigned int\\\) x" "original" } } */