Complete IrStruct->IrAggr rename.

This commit is contained in:
David Nadlinger 2013-06-17 02:41:37 +02:00
parent b15588ed15
commit 1215ffacd3
11 changed files with 36 additions and 36 deletions

View file

@ -26,7 +26,7 @@ RTTIBuilder::RTTIBuilder(AggregateDeclaration* base_class)
base = base_class;
basetype = static_cast<TypeClass*>(base->type);
baseir = base->ir.irStruct;
baseir = base->ir.irAggr;
assert(baseir && "no IrStruct for TypeInfo base class");
if (base->isClassDeclaration()) {
@ -59,7 +59,7 @@ void RTTIBuilder::push_typeinfo(Type* t)
void RTTIBuilder::push_classinfo(ClassDeclaration* cd)
{
inits.push_back(cd->ir.irStruct->getClassInfoSymbol());
inits.push_back(cd->ir.irAggr->getClassInfoSymbol());
}
void RTTIBuilder::push_string(const char* str)