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
/
pr52355.c
blob
0a0271f5dffa2a311fd630d47a52e9182eb5a6e1
1
/* { dg-do compile } */
2
3
void
f
(
char
a
[
16
][
16
][
16
])
4
{
5
__asm
volatile
(
""
: :
"i"
(&
a
[
1
][
0
][
0
] - &
a
[
0
][
0
][
0
]));
6
}
7
8
int
main
(
void
)
9
{
10
char
a
[
16
][
16
][
16
];
11
f
(
a
);
12
return
0
;
13
}