blob: 4e83607f2a81f394e7ad0f0c8e65b52d4bfe3a58 [file] [log] [blame]
/* PR tree-optimization/81588 */
/* { dg-do run } */
/* { dg-options "-O2" } */
long long int a = 5011877430933453486LL, c = 1;
unsigned short b = 24847;
#include "tree-ssa/pr81588.c"
int
main ()
{
foo ();
if (c != 0)
__builtin_abort ();
a = 24846;
c = 1;
foo ();
if (c != 1)
__builtin_abort ();
a = -5;
foo ();
if (c != 0)
__builtin_abort ();
return 0;
}