summaryrefslogtreecommitdiff
path: root/Examples/test-suite/java/profiletest_runme.java
blob: f550013698e4a6f750fb2b4a923c7c887bb166a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import profiletest.*;

public class profiletest_runme {

    System.loadLibrary("profiletest");

    public static void main(String argv[]) {
	
	long a = profiletest.new_A();
	long b = profiletest.new_B();
	for (int i=0; i<1000000; i++) {
	    a = profiletest.B_fn(b, a);
	}
    }
}