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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr97359.c
blob
9e3cc9d75abefa4052bf32e26ee116b445ccb090
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -Wno-pointer-to-int-cast" } */
3
4
typedef
unsigned int uint32_t
;
5
int
a
;
6
void
b
(
uint32_t
c
) {
7
uint32_t
*
d
= &
c
;
8
for
(;
a
;)
9
for
(;; (*
d
%=
a
) / (*
d
>
1
> (
c
>
0
)) ?: (
int
)
d
)
10
;
11
}