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
builtin-has-attribute-4.c: Skip on 32-bit hppa*-*-hpux*.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr83552.c
blob
993cdd265819c693ebb3b9b59860fd4beb43e383
1
/* PR tree-optimization/83364 */
2
/* { dg-options "-O2" } */
3
4
char
*
b
;
5
char
d
[
100
];
6
void
a
();
7
void
8
c
(
void
)
9
{
10
__builtin_strcat
(
d
,
"12345"
);
11
if
(
__builtin_strstr
(
b
,
d
) ==
b
)
12
a
();
13
}