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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr114312.c
blob
c508c64ed1991598e59ca2271af1ae5908a07e72
1
/* { dg-do compile } */
2
/* { dg-require-effective-target bitint } */
3
4
#if __BITINT_MAXWIDTH__ >= 129
5
typedef
_BitInt
(
129
)
B
;
6
B b
;
7
8
B
9
foo
(
void
)
10
{
11
_BitInt
(
64
)
a
=
1
;
12
a
&=
b
*
b
;
13
return
b
<<
a
;
14
}
15
#endif