repo.or.cz
/
pet.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix use of DiagnosticOptions for older clangs
[pet.git]
/
tests
/
div_mod.c
blob
00560eb32f523dafbdb1157c34edcf798f8999fb
1
void
foo
()
2
{
3
int
i
;
4
int
a
;
5
6
#pragma scop
7
for
(
i
= -
10
;
i
<
10
; ++
i
) {
8
if
(
i
==
5
/ -
2
)
9
a
=
5
/ -
2
;
10
if
(
i
== -
5
/ -
2
)
11
a
= -
5
/ -
2
;
12
if
(
i
==
5
% -
2
)
13
a
=
5
% -
2
;
14
if
(
i
== -
5
% -
2
)
15
a
= -
5
% -
2
;
16
}
17
#pragma endscop
18
}