Home
last modified time | relevance | path

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

/art/test/083-compiler-regressions/src/
DMain.java9735 private static int ifGez(int src, int thn, int els) { return (src >= 0) ? thn : els; } in ifGez() method in MirOpSelectTests
9798 ifGez(-1, 110, 210), 210, in testIfCcz()
9799 ifGez(0, 111, 211), 111, in testIfCcz()
9800 ifGez(1, 112, 212), 112, in testIfCcz()