X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Filasm%2Fcodegen%2FCalliInstr.cs;h=676e7462f63f8c846bb090e46d649d2d8be80d7f;hb=f84533a8decb765ac3bd8aec215c02e68043bd5e;hp=c995857e40868d54bab93ed783f273fc34e39b05;hpb=7e18ed47c9606f3981e7b18cbc238d6781843153;p=mono.git diff --git a/mcs/ilasm/codegen/CalliInstr.cs b/mcs/ilasm/codegen/CalliInstr.cs index c995857e408..676e7462f63 100644 --- a/mcs/ilasm/codegen/CalliInstr.cs +++ b/mcs/ilasm/codegen/CalliInstr.cs @@ -16,11 +16,11 @@ namespace Mono.ILASM { public class CalliInstr : IInstr { private PEAPI.CallConv call_conv; - private ITypeRef ret_type; - private ITypeRef[] param; + private BaseTypeRef ret_type; + private BaseTypeRef[] param; - public CalliInstr (PEAPI.CallConv call_conv, ITypeRef ret_type, - ITypeRef[] param, Location loc) + public CalliInstr (PEAPI.CallConv call_conv, BaseTypeRef ret_type, + BaseTypeRef[] param, Location loc) : base (loc) { this.call_conv = call_conv; @@ -37,7 +37,7 @@ namespace Mono.ILASM { if (param != null) { param_array = new PEAPI.Type[param.Length]; int count = 0; - foreach (ITypeRef typeref in param) { + foreach (BaseTypeRef typeref in param) { typeref.Resolve (code_gen); param_array[count++] = typeref.PeapiType; }