comparison tango/lib/compiler/llvmdc/typeinfo/ti_AC.d @ 213:7816aafeea3c trunk

[svn r229] Updated the object.d implementation to the latest Tango. Fixed a bunch of the built-in typeinfos for arrays, they did not inherit TypeInfo_Array. Applied patch to tango/text/convert/Layout.d by fvbommel, closes #47 . Cleaned up some type code. Replaced uses of llvm::Type with LLType (a typedef), same for Value and Constant. Fixed a few cases where typeinfo for user structs could be emitted multiple times, seems to still be some cases of this :/
author lindquist
date Fri, 30 May 2008 19:32:04 +0200
parents 1700239cab2e
children
comparison
equal deleted inserted replaced
212:4c2689d57ba4 213:7816aafeea3c
1 module typeinfo.ti_AC; 1 module typeinfo.ti_AC;
2 2
3 // Object[] 3 // Object[]
4 4
5 class TypeInfo_AC : TypeInfo 5 class TypeInfo_AC : TypeInfo_Array
6 { 6 {
7 hash_t getHash(void *p) 7 hash_t getHash(void *p)
8 { Object[] s = *cast(Object[]*)p; 8 { Object[] s = *cast(Object[]*)p;
9 hash_t hash = 0; 9 hash_t hash = 0;
10 10