aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20061214-1.c
blob: 1e65a2a6e5244f35982b5eda60035ca72a271c34 (plain)
1
2
3
4
5
6
7
typedef unsigned long long ull;
ull bar (void);
void foo (ull *x)
{
  ull y = bar ();
  *x += y >> 32;
}