blob: 1e65a2a6e5244f35982b5eda60035ca72a271c34 [file] [log] [blame]
typedef unsigned long long ull;
ull bar (void);
void foo (ull *x)
{
ull y = bar ();
*x += y >> 32;
}