repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr95548.C
blob
cd758ebbde74357edf9a9c94976c8ed44c6f806f
1
/* { dg-do link } */
2
enum A { A1 = (unsigned long)-1 } a;
3
enum B { B1 = (unsigned long long)-1, B2 = 0x123456789abcdef0ULL } b;
4
#ifdef __SIZEOF_INT128__
5
enum C { C1 = (__uint128_t)-1, C2 = ((__uint128_t) 0x123456789abcdef0ULL) << 64 | 0x0fedcba987654321ULL } c;
6
#endif
7
int
8
main ()
9
{
10
}