comparison gen/typinf.cpp @ 663:6aaa3d3c1183

First part of rename to LDC.
author Christian Kamm <kamm incasoftware de>
date Mon, 06 Oct 2008 22:46:55 +0200
parents 26fce59fe80a
children f04dde6e882c
comparison
equal deleted inserted replaced
662:88e23f8c2354 663:6aaa3d3c1183
6 // www.digitalmars.com 6 // www.digitalmars.com
7 // License for redistribution is by either the Artistic License 7 // License for redistribution is by either the Artistic License
8 // in artistic.txt, or the GNU General Public License in gnu.txt. 8 // in artistic.txt, or the GNU General Public License in gnu.txt.
9 // See the included readme.txt for details. 9 // See the included readme.txt for details.
10 10
11 // Modifications for LLVMDC: 11 // Modifications for LDC:
12 // Copyright (c) 2007 by Tomas Lindquist Olsen 12 // Copyright (c) 2007 by Tomas Lindquist Olsen
13 // tomas at famolsen dk 13 // tomas at famolsen dk
14 14
15 #include <cstdio> 15 #include <cstdio>
16 #include <cassert> 16 #include <cassert>
232 * Used to supply hidden _arguments[] value for variadic D functions. 232 * Used to supply hidden _arguments[] value for variadic D functions.
233 */ 233 */
234 234
235 Expression *createTypeInfoArray(Scope *sc, Expression *exps[], int dim) 235 Expression *createTypeInfoArray(Scope *sc, Expression *exps[], int dim)
236 { 236 {
237 assert(0); // done elsewhere in llvmdc 237 assert(0); // done elsewhere in LDC
238 return NULL; 238 return NULL;
239 } 239 }
240 240
241 /* ========================================================================= */ 241 /* ========================================================================= */
242 242