Newer
Older
#define ON
float sum = 0.0;
void main()
{
#ifdef ON
//yes
sum += 1.0;
#endif
#ifdef OFF
//no
sum += 20.0;
#endif
#if defined(ON)
//yes
sum += 300.0;
#endif
#if defined(OFF)
//no
sum += 4000.0;
#endif
#if !defined(ON)
//no
sum += 50000.0;
#endif
John Kessenich
committed
#ifndef OFF
//yes
sum += 600000.0;
#else
//no
sum += 0.6;
#endif
#if defined(ON) && defined(OFF)
//no
sum += 0.7;
#elif !defined(OFF)
//yes
sum += 7000000.0;
#endif
#if defined(ON) && !defined(OFF)
//yes
sum += 80000000.0;
#endif
#if defined(OFF) || defined(ON)
//yes
sum += 900000000.0;
#endif
John Kessenich
committed
#if NEVER_DEFINED
//no
sum += 0.04;
#else
sum += 0.05;
#endif
// sum should be 987600301.7
gl_Position = vec4(sum);
}
John Kessenich
committed
#define A 0
John Kessenich
committed
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#if (A == B) || (A == C)
#error good1
#endif
#if A == B || (A == C)
#error good2
#endif
#if (A == B || (A == C))
#error good3
#endif
#if (AA == BB) || (AA == CC)
#error good4
#endif
#if AA == BB || (AA == CC)
#error good5
#endif
#if ((AA == BB || (AA == CC)))
#error good6
#endif
#if (A == B || (A == C)
#error bad1
#endif
#if A == B || A == C)
#error bad2
#endif
#if (A == B || (A == C)
#error bad3
#endif
#if AA == BB) || (AA == CC)
#error bad4
#endif
#if AA == BB || (AA == CC
#error bad5
#endif
#if ((AA == BB || (AA == CC))))
#error bad6
John Kessenich
committed
int linenumber = __LINE__;
int filenumber = __FILE__;
int version = __VERSION__;
John Kessenich
committed
#define PI (3.14)
#define TWOPI (2.0 * PI)
float twoPi = TWOPI;
//#define PASTE(a,b) a ## b
//float PASTE(tod, ay) = 17;
"boo" // ERROR
int a = length("aoenatuh"); // ERROR
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
// ERROR: all the following are reserved
#define GL_
#define GL_Macro 1
#define __M
#define M__
#define ABC__DE abc
#if 4
#else extra
#elif
// ERROR elif after else
#endif
#if blah
#if 0
#else extra
#ifdef M
#else
#else
// ERROR else after else
#endif extra
#endif
#endif
#define m1(a,a) // ERROR
#define m2(a,b)
// okay
#define m3 (a)
#define m3 (a)
// ERROR
#define m4(b)
#define m4 (b)
// ERROR
#define m5 (b)
#define m5(b)
// ERROR
#define m6(a)
#define m6
// ERROR (whitespace)
#define m7 (a)
#define m7 ( a)
#define m80(a,b) is + exactly m3 the same
#define m80(a,b) is + exactly m3 the same
// ERROR
#define m8(a,b) almost + exactly m3 the same
#define m8(a,b) almost + exactly m3 thee same
// ERROR
#define m9(a,b,c) aoe
#define m9(a,d,c) aoe
#define n1 0xf
int n = n1;
#define f1 .08e-2Lf
double f = f1;
#undef __VERSION__
#undef GL_ARB_texture_rectangle
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
#
#
#
##
# #
# 0x25
####
####ff
#########ff fg 0x25
#pragma
#pragma(aoent)
# pragma
#pragma STDGL
#pragma optimize( on)
#pragma optimize(off)
#pragma debug( on)
#pragma debug(off )
#pragma optimize( on) anoteun
#pragma optimize(off
#pragma debug( on) (
#pragma debug(off aoeua)
#pragma optimize( on)
#pragma optimize(off,)
#pragma debug( on, aoeu)
#pragma debugoff )
#pragma aontheu natoeh uantheo uasotea noeahuonea uonethau onethuanoeth aunotehau noeth anthoeua anoethuantoeh uantoehu natoehu naoteh unotaehu noethua onetuh aou
# \
# \
error good continuation
#flizbit
#define directive error
#directive directive was expanded
John Kessenich
committed
#line 12000
John Kessenich
committed
#error line should be 12000
John Kessenich
committed
#line 13000 7
John Kessenich
committed
#error line should be 13000, string 7
John Kessenich
committed
#define L1 14000
#define L2 13
#define F1 5
#define F2 7
#line L1 + L2
John Kessenich
committed
#error line should be 14013, string 7
John Kessenich
committed
#line L1 + L2 F1 + F2 // antoeuh sat comment
John Kessenich
committed
#error line should be 14013, string 12
John Kessenich
committed
#line L1 + L2 + F1 + F2
John Kessenich
committed
#error line should be 14025, string 12
John Kessenich
committed
#line 1234 F1 + F2 extra
John Kessenich
committed
#define empty_extra
#line 1235 F1 + F2 empty_extra
#define moreEmpty empty_extra
#line 1236 F1 + F2 moreEmpty empty_extra // okay, lots of nothin
#line 1237 F1 + F2 moreEmpty empty_extra extra // ERROR, 'extra'
#line 1238 F1 + F2 moreEmpty empty_extra
#line 1239 empty_extra F1 empty_extra + empty_extra F2 empty_extra moreEmpty empty_extra
John Kessenich
committed
#line (20000)
John Kessenich
committed
#error line should be 20000
John Kessenich
committed
#line (20000+10)
John Kessenich
committed
#error line should be 20010
John Kessenich
committed
#line +20020
John Kessenich
committed
#error line should be 20020
John Kessenich
committed
John Kessenich
committed
#define VAL1 1.0
#define VAL2 2.0
#define RES2 /* test a multiline
comment in a macro definition */ (RES1 * VAL2)
#define RES1 (VAL2 / VAL1)
#define RES2 /* comment */(RES1 * VAL2)
#define /* */SUM_VALUES (RES2 + RES1)
void foo234()
{
gl_Position = vec4(SUM_VALUES);
}
// more whitespace recording tests
#define SPACE_AT_END(a,b) spaceAtEndIsOkay
#define SPACE_AT_END(a,b) spaceAtEndIsOkay // space at end
#define SPACE_AT_BEGIN(a,b)spaceAtBeginIsOkay
#define SPACE_AT_BEGIN(a,b) spaceAtBeginIsOkay
// space in middle is an error
#define SPACE_IN_MIDDLE(a,b) space +in middle
#define SPACE_IN_MIDDLE(a,b) space + in middle
John Kessenich
committed
#define FIRSTPART 17
#define SECONDPART + 5
#if FIRSTPART SECONDPART == 22
#error good evaluation 1
#endif
#if moreEmpty FIRSTPART moreEmpty SECONDPART moreEmpty == moreEmpty 22 moreEmpty
#error good evaluation 2
#endif
John Kessenich
committed
// ERRORS...
#line 9000
#if defined(OUNH
#endif
#if defined OUNH)
#endif
// recursion (okay)
#define RECURSE RECURSE
int RECURSE;
#define R2 R1
#define R1 R2
#undef RECURSE
int R1 = RECURSE;
#define FOOOM(a,b) a + b
int aoeua = FOOOM;
#if FOOOM
#endif
John Kessenich
committed
#line 9500
#if\376
#endif
#if \376
#endif
#if \377
#endif
#error\377
#error \ 376
#error \377
// ERROR for macro expansion to yield 'defined'
#line 9600
#define DEF_MAC
#define DEF_DEFINED defined
#if DEF_DEFINED DEF_MAC
#error DEF_DEFINED then
#else
#error DEF_DEFINED else
#endif
John Kessenich
committed
#line 10000
#if 1
#else
// ERROR, missing #endif