MCPcopy Index your code
hub / github.com/clojure/clojure / ifICmp

Method ifICmp

src/jvm/clojure/asm/commons/GeneratorAdapter.java:1014–1016  ·  view source on GitHub ↗

Generates the instructions to jump to a label based on the comparison of the top two integer stack values. @param mode how these values must be compared. One of EQ, NE, LT, GE, GT, LE. @param label where to jump if the comparison result is true .

(final int mode, final Label label)

Source from the content-addressed store, hash-verified

1012 * @param label where to jump if the comparison result is <tt>true</tt>.
1013 */
1014 public void ifICmp(final int mode, final Label label) {
1015 ifCmp(Type.INT_TYPE, mode, label);
1016 }
1017
1018 /**
1019 * Generates the instructions to jump to a label based on the comparison of the top integer stack

Callers

nothing calls this directly

Calls 1

ifCmpMethod · 0.95

Tested by

no test coverage detected