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
vr-values: Avoid ICEs on large _BitInt cast to floating point [PR112901]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
bitint-51.c
blob
057407099e40c39889f703d6167876f37351282f
1
/* PR tree-optimization/112901 */
2
/* { dg-do compile { target bitint } } */
3
/* { dg-options "-O2" } */
4
5
float
f
;
6
#if __BITINT_MAXWIDTH__ >= 256
7
_BitInt
(
256
)
i
;
8
9
void
10
foo
(
void
)
11
{
12
f
*=
4
*
i
;
13
}
14
#endif