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
RISC-V: Add support for riscv-*-*.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr81207.c
blob
f0faa8c0a229fc0a7af93df3f049cf937685fe81
1
/* PR middle-end/81207 */
2
3
static const char
*
b
[
2
] = {
"'"
,
""
};
4
5
int
6
foo
(
const char
*
d
)
7
{
8
int
e
;
9
for
(
e
=
0
;
b
[
e
];
e
++)
10
if
(
__builtin_strstr
(
d
,
b
[
e
]))
11
return
1
;
12
return
0
;
13
}