diff gen/typeinf.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
children eef8ac26c66c
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gen/typeinf.h	Sun Nov 18 06:52:57 2007 +0100
@@ -0,0 +1,9 @@
+#ifndef LLVMDC_GEN_TYPEINF_H
+#define LLVMDC_GEN_TYPEINF_H
+
+void DtoResolveTypeInfo(TypeInfoDeclaration* tid);
+void DtoDeclareTypeInfo(TypeInfoDeclaration* tid);
+void DtoConstInitTypeInfo(TypeInfoDeclaration* tid);
+void DtoDefineTypeInfo(TypeInfoDeclaration* tid);
+
+#endif