comparison dmd/lexer.h @ 599:4435f57956e7

Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 15 Sep 2008 02:04:26 +0200
parents aaade6ded589
children 50383e476c7e
comparison
equal deleted inserted replaced
598:13ff06605226 599:4435f57956e7
158 TOKtls, 158 TOKtls,
159 TOKline, 159 TOKline,
160 TOKfile, 160 TOKfile,
161 #endif 161 #endif
162 162
163 // LLVMDC specific
164 #if IN_LLVM
165 TOKgep,
166 #endif
167
163 TOKMAX 168 TOKMAX
164 }; 169 };
165 170
166 #define CASE_BASIC_TYPES \ 171 #define CASE_BASIC_TYPES \
167 case TOKwchar: case TOKdchar: \ 172 case TOKwchar: case TOKdchar: \