Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / benchmark / inline1.cs
1 using System;
2
3 public class Test {
4
5         public static void test (int n) {
6         }
7
8         public static int Main (string[] args) {
9                 int repeat = 1;
10                 
11                 if (args.Length == 1)
12                         repeat = Convert.ToInt32 (args [0]);
13                 
14                 Console.WriteLine ("Repeat = " + repeat);
15
16                 for (int i = 0; i < repeat; i++)
17                         for (int j = 0; j < 500000000; j++)
18                                 test (12345);
19                 
20                 return 0;
21         }
22 }
23
24