OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.other/] [exprstmt1.C] - Diff between revs 305 and 338

Only display areas with differences | Details | Blame | View Log

Rev 305 Rev 338
// { dg-do run  }
// { dg-do run  }
// { dg-options "-O" }
// { dg-options "-O" }
// { dg-error "limited range of data type" "16-bit target" { target xstormy16-*-* } 0 }
// { dg-error "limited range of data type" "16-bit target" { target xstormy16-*-* } 0 }
// { dg-error "shift count >=" "16-bit target" { target xstormy16-*-* } 0 }
// { dg-error "shift count >=" "16-bit target" { target xstormy16-*-* } 0 }
int main()
int main()
{
{
  unsigned int x = 1381237248;
  unsigned int x = 1381237248;
  if (sizeof (x) != 4)
  if (sizeof (x) != 4)
    return 0;
    return 0;
  x =
  x =
    ({
    ({
      unsigned int y = x;
      unsigned int y = x;
      ({
      ({
        unsigned int z = y;
        unsigned int z = y;
        (unsigned int)
        (unsigned int)
          ((((unsigned int)z & (unsigned int)0x000000ffUL) << 24)
          ((((unsigned int)z & (unsigned int)0x000000ffUL) << 24)
           | (((unsigned int)z & (unsigned int)0x0000ff00UL) << 8)
           | (((unsigned int)z & (unsigned int)0x0000ff00UL) << 8)
           | (((unsigned int)z & (unsigned int)0x00ff0000UL) >> 8)
           | (((unsigned int)z & (unsigned int)0x00ff0000UL) >> 8)
           | (((unsigned int)z & (unsigned int)0xff000000UL) >> 24));
           | (((unsigned int)z & (unsigned int)0xff000000UL) >> 24));
       });
       });
     });
     });
  return x != 152658;
  return x != 152658;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.