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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
Wno-attribute-warning.c
blob
2475304757488141ebf78567b0886262e3432aff
1
/* { dg-do compile } */
2
/* { dg-options "-Werror -Wno-error=attribute-warning" } */
3
4
int
f1
(
void
)
__attribute__
((
warning
(
"Please avoid f1"
)));
5
int
func1
(
void
)
6
{
7
return
f1
();
/* { dg-warning "'f1' declared with attribute warning: Please avoid f1" } */
8
}