Committing LLVM binding for D as it currently exists in the SVN repository.

This commit is contained in:
Frits van Bommel
2009-04-27 22:33:17 +02:00
parent f290ff0530
commit e3b8cb29ea
21 changed files with 3493 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
// simple test of recursive types.
module llvmsample2;
import llvm.llvm;
void main()
{
auto th = new TypeHandle();
auto s = StructType.Get([ PointerType.Get(th.resolve) ], false);
th.refine(s);
s.dump();
th.dispose();
auto t = getTypeOf(s.ll);
t.dump();
assert(s is t);
}