56 lines
802 B
Kotlin
Vendored
56 lines
802 B
Kotlin
Vendored
// Generates ICONST_1
|
|
val a = 1
|
|
|
|
fun main() {
|
|
// Generates IF_ICMPEQ and GOTO
|
|
if (!(a == 42)) {
|
|
"then"
|
|
} else {
|
|
"else"
|
|
}
|
|
|
|
// Generates IF_ICMPEQ and GOTO
|
|
if (a != 42) {
|
|
"then"
|
|
} else {
|
|
"else"
|
|
}
|
|
|
|
// Generates IF_ICMPGT and GOTO
|
|
if (!(a > 42)) {
|
|
"then"
|
|
} else {
|
|
"else"
|
|
}
|
|
|
|
// Generates IF_ICMPGE and GOTO
|
|
if (!(a >= 42)) {
|
|
"then"
|
|
} else {
|
|
"else"
|
|
}
|
|
|
|
// Generates IF_ICMPLT and GOTO
|
|
if (!(a < 42)) {
|
|
"then"
|
|
} else {
|
|
"else"
|
|
}
|
|
|
|
// Generates IF_ICMPLE and GOTO
|
|
if (!(a <= 42)) {
|
|
"then"
|
|
} else {
|
|
"else"
|
|
}
|
|
}
|
|
|
|
//0 ICONST_0
|
|
//1 ICONST_1
|
|
//2 IF_ICMPEQ
|
|
//1 IF_ICMPLE
|
|
//1 IF_ICMPLT
|
|
//1 IF_ICMPGE
|
|
//1 IF_ICMPGT
|
|
//6 IF
|
|
//6 GOTO |