diff 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
line wrap: on
line diff
--- a/dmd/lexer.h	Sun Sep 14 22:49:19 2008 +0200
+++ b/dmd/lexer.h	Mon Sep 15 02:04:26 2008 +0200
@@ -160,6 +160,11 @@
 	TOKfile,
 #endif
 
+// LLVMDC specific
+#if IN_LLVM
+    TOKgep,
+#endif
+
 	TOKMAX
 };