Home
last modified time | relevance | path

Searched refs:newCounter (Results 1 – 1 of 1) sorted by relevance

/art/test/674-hotness-compiled/src/
DMain.java34 int newCounter = getHotnessCounter(Main.class, "$noinline$hotnessCount"); in main() local
35 if (counter == newCounter) { in main()
41 newCounter = getHotnessCounter(Main.class, "$noinline$hotnessCountWithLoop"); in main()
42 if (newCounter == counter) { in main()
43 throw new Error("Expected counter " + newCounter + " to be different than " + counter); in main()
45 counter = newCounter; in main()
48 newCounter = getHotnessCounter(Main.class, "$noinline$hotnessCountWithLoop"); in main()
49 if (newCounter == counter) { in main()
50 throw new Error("Expected counter " + newCounter + " to be different than " + counter); in main()