Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
conditions
/
negatedNullCompareInDoWhile.kt
blob: 283565e15178a072b47efc8585294eb0c6359f01 [
file
] [
log
] [
blame
]
fun main
(
p
:
String
?,
p2
:
String
?)
{
// Generates IFNONNULL
do
{
"loop"
}
while
(!(
p
==
null
))
// Generates IFNONNULL
do
{
"loop"
}
while
(
p2
!=
null
)
}
//0 ICONST_0
//0 ICONST_1
//0 ACONST_NULL
//2 IFNONNULL
//2 IF
//0 GOTO