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)
| 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 |