repo.or.cz
/
mesa
/
nouveau-pmpeg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
g3dvl: Use sobel filter for chroma interpolation
[mesa/nouveau-pmpeg.git]
/
src
/
glsl
/
glcpp
/
tests
/
054-if-with-macros.c
blob
3da79a0d96e547238f91f221c570daa2d6f2826d
1
#define one 1
2
#define two 2
3
#define three 3
4
#define five 5
5
#if five < two
6
failure_1
7
#else
8
success_1
9
#endif
10
#if three >= two
11
success_2
12
#else
13
failure_2
14
#endif
15
#if two + three <= five
16
success_3
17
#else
18
failure_3
19
#endif
20
#if five - two == three
21
success_4
22
#else
23
failure_4
24
#endif
25
#if one > three
26
failure_5
27
#else
28
success_5
29
#endif
30
#if one != five
31
success_6
32
#else
33
failure_6
34
#endif