[runtime] Move the monograph tool to tools/.
[mono.git] / mono / mini / basic-long.cs
index e0c5129052ace838f77a4265bc21e662f178bdf0..1d81232c3a04dbb80a94811fbdf41ee1766f2285 100644 (file)
@@ -1212,6 +1212,16 @@ class Tests
                return (int)res;
        }
 
+       public static int test_0_lrem_imm_1 () {
+               long b = 12L;
+               return (int)(b % 1L);
+       }
+
+       public static int test_0_lrem_imm_1_neg () {
+               long b = -2L;
+               return (int)(b % 1L);
+       }
+
        public static int test_0_lrem_imm_2 ()
        {
                long x = 245345634L;