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
/
pr93054.c
blob
1d4680d28e6e0d5c4f155774f5f94b4bc4886aee
1
/* { dg-do compile } */
2
3
__attribute__
((
returns_twice
))
int
4
bp
(
int
);
5
6
__attribute__
((
noreturn
))
int
7
cb
(
void
)
8
{
9
return
bp
(
cb
());
/* { dg-warning "declared .noreturn." } */
10
}