Remove code duplication for vtable loads and improve instruction naming to make

bitcode with virtual calls easier to read.
This commit is contained in:
Frits van Bommel
2009-05-30 13:04:49 +02:00
parent a05ed9a171
commit da593c99dc
3 changed files with 12 additions and 20 deletions

View File

@@ -32,6 +32,6 @@ DValue* DtoDynamicCastInterface(DValue* val, Type* to);
LLValue* DtoIndexClass(LLValue* src, ClassDeclaration* sd, VarDeclaration* vd);
LLValue* DtoVirtualFunctionPointer(DValue* inst, FuncDeclaration* fdecl);
LLValue* DtoVirtualFunctionPointer(DValue* inst, FuncDeclaration* fdecl, char* name);
#endif