comparison gen/irstate.c @ 6:35d93ce68cf4 trunk

[svn r10] Updated for LLVM rev. 20070913 Applied fixes from wilsonk on the forum Some tweaks to work with gc 7.0 Fixed aggregate members of aggregates Fixed cyclic/recursive class declarations Other minor tweaks
author lindquist
date Wed, 26 Sep 2007 19:05:18 +0200
parents e116aa1488e6
children 0e86428ee567
comparison
equal deleted inserted replaced
5:3d60e549b0c2 6:35d93ce68cf4
97 : recty(llvm::OpaqueType::get()) 97 : recty(llvm::OpaqueType::get())
98 { 98 {
99 type = 0; 99 type = 0;
100 } 100 }
101 101
102 IRStruct::IRStruct(TypeStruct* t) 102 IRStruct::IRStruct(Type* t)
103 : recty(llvm::OpaqueType::get()) 103 : recty(llvm::OpaqueType::get())
104 { 104 {
105 type = t; 105 type = t;
106 } 106 }
107 107