repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
pretty-print.h (pp_base): Remove.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr22311-1.c
blob
4eec5ce9a25072877cb521f88e499fb6fa2a4f23
1
/* Bug 22311: ICE with -fshort-enums on shortened operations. */
2
/* { dg-do compile } */
3
/* { dg-options "-fshort-enums" } */
4
5
typedef
enum
{
A
=
1
}
E
;
6
void
f
(
E e
,
unsigned char
c
) {
c
|=
e
; }