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
Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr23424-1.c
blob
91950d77a43c012443803f612bf77416c859e6d1
1
/* { dg-do compile } */
2
extern
char
*
x
;
3
extern
void
foo
(
void
);
4
void
f
(
char
*
s
,
char
*
se
,
char
*
mp
,
char
*
y
)
5
{
6
while
(
s
!=
se
)
7
{
8
char
*
p
;
9
foo
();
10
p
=
s
+ *
mp
;
11
*
y
++ = *
p
;
12
s
=
p
;
13
}
14
15
x
=
s
;
16
}