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
/
pr38957.c
blob
f94cd7627b4a6540531171f9afb2daa1c3a9b46c
1
/* PR c/38957 */
2
/* { dg-do compile } */
3
4
char
*
5
foo
(
void
)
6
{
7
char
a
[
2
];
8
return
a
+
1
;
/* { dg-warning "returns address of local variable" } */
9
}
10
11
char
*
12
bar
(
void
)
13
{
14
char
a
[
2
];
15
return
a
;
/* { dg-warning "returns address of local variable" } */
16
}