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
* testsuite/libgomp.fortran/vla7.f90: Add -w to options.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
builtin-strstr.c
blob
b8201f416426efa6abf3eb29be625594559e8191
1
/* The strstr call is expanded to just "s", which should not result in a
2
warning about discarding qualifiers in an assignment. */
3
/* { dg-do compile } */
4
extern
char
*
strstr
(
const char
*
s1
,
const char
*
s2
);
5
void
foo
(
const char
*
s
){
6
char
*
cp
;
7
cp
=
strstr
(
s
,
""
);
8
}