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-int64.il')
-rw-r--r--mcs/ilasm/tests/test-int64.il42
1 files changed, 42 insertions, 0 deletions
diff --git a/mcs/ilasm/tests/test-int64.il b/mcs/ilasm/tests/test-int64.il
new file mode 100644
index 00000000000..298e866c847
--- /dev/null
+++ b/mcs/ilasm/tests/test-int64.il
@@ -0,0 +1,42 @@
+// Test for large numbers
+
+.assembly extern mscorlib
+{
+ .ver 1:0:5000:0
+}
+.assembly 'max'
+{
+ .ver 0:0:0:0
+}
+.module max.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 public static hidebysig
+ default void Main () cil managed
+ {
+ .entrypoint
+ .maxstack 1
+ .locals init (
+ unsigned int64 V_0)
+ ldc.i8 9223372036854775810
+ pop
+ ldc.r8 9223372036854775810
+ pop
+ ldc.i8 -9223372036854775808
+ IL_0009: stloc.0
+ IL_000a: ret
+ }
+
+ }