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
/
pr83930.c
blob
8a079af3fb43b519f1c678556d399328d5c3e5fb
1
/* PR target/83930 */
2
/* { dg-do compile } */
3
/* { dg-options "-Og -fno-tree-ccp -w" } */
4
5
unsigned
__attribute__
((
__vector_size__
(
16
)))
v
;
6
7
static
inline
void
8
bar
(
unsigned char
d
)
9
{
10
v
/=
d
;
11
}
12
13
__attribute__
((
always_inline
))
void
14
foo
(
void
)
15
{
16
bar
(
4
);
17
}