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
* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr38661.c
blob
5d243c6be51dcc91e3b87649f4504f133f519e9f
1
/* We used to ICE because we would wrap INT_MAX
2
into INT_MIN while doing the switch converison. */
3
4
const char
*
func
(
int
val
) {
5
switch
(
val
) {
6
case
__INT_MAX__
:
return
"foo"
;
7
default
:
return
""
;
8
}
9
}