Home
last modified time | relevance | path

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

/art/test/083-compiler-regressions/src/
DMain.java9756 private static int ifLez(int src, int thn, int els) { return (src <= 0) ? thn : els; } in ifLez() method in MirOpSelectTests
9823 ifLez(-1, 116, 216), 116, in testIfCcz()
9824 ifLez(0, 117, 217), 117, in testIfCcz()
9825 ifLez(1, 118, 218), 218, in testIfCcz()