Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/ilasm/tests/test-ldcr-bytes.il')
-rw-r--r--mcs/ilasm/tests/test-ldcr-bytes.il44
1 files changed, 44 insertions, 0 deletions
diff --git a/mcs/ilasm/tests/test-ldcr-bytes.il b/mcs/ilasm/tests/test-ldcr-bytes.il
new file mode 100644
index 00000000000..ae07d7b270f
--- /dev/null
+++ b/mcs/ilasm/tests/test-ldcr-bytes.il
@@ -0,0 +1,44 @@
+.assembly extern mscorlib
+{
+}
+.assembly 'test-ldcr-bytes'
+{
+}
+.module ldcr8.exe
+
+ .class private auto ansi beforefieldinit test
+ extends [mscorlib]System.Object
+ {
+
+ .method public hidebysig specialname rtspecialname
+ instance default void .ctor () cil managed
+ {
+ .maxstack 8
+ IL_0000: ldarg.0
+ IL_0001: call instance void object::.ctor()
+ IL_0006: ret
+ }
+
+ .method private static hidebysig
+ default float64 foo () cil managed
+ {
+ .maxstack 8
+ ldc.r4 (00 01 02 03)
+ pop
+ ldc.r8 (00 01 02 03 04 05 06 07)
+ IL_0009: ret
+ }
+
+ .method public static hidebysig
+ default void Main (string[] args) cil managed
+ {
+ .entrypoint
+ .maxstack 8
+ IL_0000: ldstr "{0}"
+ IL_0005: call float64 class test::foo()
+ IL_000a: box [mscorlib]System.Double
+ IL_000f: call void class [mscorlib]System.Console::WriteLine(string, object)
+ IL_0014: ret
+ }
+
+ }