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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
20111216-1.c
blob
cd82cf929849cc4da50b021c898502d677c2d827
1
/* { dg-do compile } */
2
/* { dg-options "-O -fexceptions -fnon-call-exceptions" } */
3
4
extern
void
f2
()
__attribute__
((
noreturn
));
5
void
6
f1
()
7
{
8
unsigned char
a
[
8
];
9
unsigned int
i
;
10
11
for
(
i
=
0
;
i
<
8
;
i
++)
12
{
13
if
(
i
>
8
)
14
f2
();
15
a
[
i
] =
i
<=
8
;
16
}
17
}