blob: 1f86f8f598eaf603ae48fde194abff7b0292275f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/*
Distributed under the two-clause BSD licence;
see the COPYING file for details. */
#include <stdio.h>
#include <stdlib.h>
#if (FOOB | FOO) == 43
int foo1() { return 0; }
#else
#error FOOB bitwise-or FOO is not 43
#endif
#if (FOO ^ FOO) == 0
int foo2() { return 0; }
#else
#error FOO bitwise-xor FOO is not 0
#endif
#if (FOOB & 2) == 2
int foo3() { return 0; }
#else
#error FOOB bitwise-and 2 is not 2
#endif
#if (FOO << 1) == 2
int foo4() { return 0; }
#else
#error FOO left-shift 2 is not 2
#endif
#if (FOOB >> 4) == 2
int foo5() { return 0; }
#else
#error FOOB right-shift 2 is not 2
#endif
#if (FOOB + FOO) == 43
int foo6() { return 0; }
#else
#error FOOB add FOO is not 43
#endif
#if (FOOB - FOO) == 41
int foo7() { return 0; }
#else
#error FOOB subtract FOO is not 41
#endif
#if (FOOB * 2) == 84
int foo8() { return 0; }
#else
#error FOOB multiply 2 is not 84
#endif
#if (FOOB / 2) == 21
int foo9() { return 0; }
#else
#error FOOB divided 2 is not 21
#endif
#if (FOOB % FOO) == 0
int foo10() { return 0; }
#else
#error FOOB modulo FOO is not 0
#endif
#if ~(FOOB) == -43
int foo11() { return 0; }
#else
#error bitwise-not FOOB is not -43
#endif
#if -(FOOB) == -42
int foo12() { return 0; }
#else
#error negate FOOB is not -42
#endif
int main()
{
foo1();
foo2();
foo3();
foo4();
foo5();
foo6();
foo7();
foo8();
foo9();
foo10();
foo11();
foo12();
}
|