URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [opt/] [fold3.C] - Rev 313
Go to most recent revision | Compare with Previous | Blame | View Log
// PR middle-end/15069
// { dg-do run }
// { dg-options "-O2" }
extern "C" void abort (void);
typedef enum {
FOUR = 4,
FIVE = 5
} direction_t;
int main ()
{
direction_t four = FOUR;
int flags = (four & 4L) ? (32L | 128L) : 0;
flags &= 32L;
if (flags == 0)
abort ();
}
Go to most recent revision | Compare with Previous | Blame | View Log