// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. .assembly extern mscorlib {} .assembly MCCTest {} .module mcc_i14.exe .namespace MCCTest { .class MyClass { .method assembly static pinvokeimpl("native_i1s" as "#1" stdcall) valuetype MCCTest.VType1 Sum(float32, float32, float32, float32, float32, float32, float32, float32, float32, float32, float32, float32) cil managed preservesig { } .method private static int32 Main(string[] args) { .entrypoint .maxstack 64 .locals init ( [0] valuetype MCCTest.VType1 res, [1] int32 rc ) ldc.r4 1 ldc.r4 2 ldc.r4 3 ldc.r4 4 ldc.r4 5 ldc.r4 6 ldc.r4 7 ldc.r4 8 ldc.r4 9 ldc.r4 10 ldc.r4 11 ldc.r4 12 call valuetype MCCTest.VType1 MCCTest.MyClass::Sum(float32, float32, float32, float32, float32, float32, float32, float32, float32, float32, float32, float32) stloc.s res // Check Result ldloc.s res ldc.i4 12 call int32 MCCTest.Common::CheckResult(valuetype MCCTest.VType1, int32) stloc.s rc ldloc.s rc ret } // end of method MyClass::Main } // end of class MyClass } // end of namespace MCCTest