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
/
warn-1.c
blob
6db4ae5cd6ce5312011cada2c623b5244a77188c
1
/* The compiler used to say passing arg 0 of, which is wrong. */
2
/* Radar 3069179 */
3
4
/* { dg-options "-O3" } */
5
6
static void
foo
(
p
)
7
int
p
;
8
{
9
}
10
11
void
bar
(
void
)
12
{
13
void
*
vp
;
14
15
foo
(
vp
);
/* { dg-bogus "passing argument 1 of" } */
16
}