Home
last modified time | relevance | path

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

/art/test/083-compiler-regressions/src/
DMain.java9753 private static int ifLtz(int src, int thn, int els) { return (src < 0) ? thn : els; } in ifLtz() method in MirOpSelectTests
9814 ifLtz(-1, 107, 207), 107, in testIfCcz()
9815 ifLtz(0, 108, 208), 208, in testIfCcz()
9816 ifLtz(1, 109, 209), 209, in testIfCcz()