Home
last modified time | relevance | path

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

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