Rename Type::irtype to ctype for consistency with dmd and gdc

This commit is contained in:
Alexey Prokhin 2014-09-22 18:52:44 +04:00
parent 0f7a3b64c5
commit 66a392a5c2
14 changed files with 46 additions and 66 deletions

View file

@ -719,8 +719,8 @@ void Module::genmoduleinfo()
RTTIBuilder b(moduleinfo);
// some types
LLType* moduleinfoTy = moduleinfo->type->irtype->getLLType();
LLType* classinfoTy = Type::typeinfoclass->type->irtype->getLLType();
LLType* moduleinfoTy = moduleinfo->type->ctype->getLLType();
LLType* classinfoTy = Type::typeinfoclass->type->ctype->getLLType();
// importedModules[]
std::vector<LLConstant*> importInits;