Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
conditions
/
nullCompareInIf.kt
blob: 4d770307272bb90aaf6f0e696eb74e323fdb2fae [
file
] [
log
] [
blame
]
fun main
(
p
:
String
?)
{
// Generates IFNONNULL and GOTO
if
(
p
==
null
)
{
"then"
}
else
{
"else"
}
}
//0 ICONST_0
//0 ICONST_1
//0 ACONST_NULL
//1 IFNONNULL
//1 IF
//1 GOTO