[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mono / benchmark / inline1.cs
blob883a81ddcd176c94dfc5b3e579206c7b5c0aea90
1 using System;
3 public class Test {
5 public static void test (int n) {
8 public static int Main (string[] args) {
9 int repeat = 1;
11 if (args.Length == 1)
12 repeat = Convert.ToInt32 (args [0]);
14 Console.WriteLine ("Repeat = " + repeat);
16 for (int i = 0; i < repeat; i++)
17 for (int j = 0; j < 500000000; j++)
18 test (12345);
20 return 0;