comparison gen/classes.h @ 102:027b8d8b71ec trunk

[svn r106] Turns out the last commit wasn't enough, now the D->LLVM process is even more split up. Basically it tries to do the following in order: Resolve types, Declare symbols, Create constant initializers, Apply initializers, Generate functions bodies. ClassInfo is now has the most useful(biased?) members working. Probably other stuf...
author lindquist
date Sun, 18 Nov 2007 06:52:57 +0100
parents 5071469303d4
children 27b9f749d9fe
comparison
equal deleted inserted replaced
101:169fda3a77d4 102:027b8d8b71ec
1 #ifndef LLVMDC_GEN_CLASSES_H 1 #ifndef LLVMDC_GEN_CLASSES_H
2 #define LLVMDC_GEN_CLASSES_H 2 #define LLVMDC_GEN_CLASSES_H
3
4 /**
5 * Resolves the llvm type for a class declaration
6 */
7 void DtoResolveClass(ClassDeclaration* cd);
3 8
4 /** 9 /**
5 * Provides the llvm declaration for a class declaration 10 * Provides the llvm declaration for a class declaration
6 */ 11 */
7 void DtoDeclareClass(ClassDeclaration* cd); 12 void DtoDeclareClass(ClassDeclaration* cd);