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
2015-09-24 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr50333.c
blob
47577dcccc85c9d6b599af23f1f5d250520a9019
1
/* { dg-do compile } */
2
3
static
inline
void
4
unext
(
unsigned int
*
_ui
,
unsigned
_len
,
unsigned int
_ui0
)
5
{
6
unsigned
j
=
1
;
7
while
(++
j
<
_len
)
8
;
9
_ui
[
j
-
1
]=
_ui0
;
10
}
11
unsigned int
12
ncwrs_urow
(
unsigned
_n
,
unsigned
_k
,
unsigned int
*
_u
)
13
{
14
unsigned
k
;
15
for
(
k
=
2
;
k
<
_n
;
k
++)
16
unext
(
_u
+
1
,
_k
+
1
,
1
);
17
}