view gcc/testsuite/gcc.dg/pr22311-1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* Bug 22311: ICE with -fshort-enums on shortened operations.  */
/* { dg-do compile } */
/* { dg-options "-fshort-enums" } */

typedef enum { A = 1 } E;
void f(E e, unsigned char c) { c |= e; }