diff --git a/kotstd/lib/kotlin-reflect.jar b/kotstd/lib/kotlin-reflect.jar deleted file mode 100644 index 62340e2dae4..00000000000 Binary files a/kotstd/lib/kotlin-reflect.jar and /dev/null differ diff --git a/kotstd/lib/kotlin-runtime-sources.jar b/kotstd/lib/kotlin-runtime-sources.jar deleted file mode 100644 index e661b30034a..00000000000 Binary files a/kotstd/lib/kotlin-runtime-sources.jar and /dev/null differ diff --git a/kotstd/lib/kotlin-runtime.jar b/kotstd/lib/kotlin-runtime.jar deleted file mode 100644 index 4d7a92703f8..00000000000 Binary files a/kotstd/lib/kotlin-runtime.jar and /dev/null differ diff --git a/translator/src/main/kotlin/org/kotlinnative/translator/llvm/types/LLVMReferenceType.kt b/translator/src/main/kotlin/org/kotlinnative/translator/llvm/types/LLVMReferenceType.kt index 0c87c928319..b3b51956e16 100644 --- a/translator/src/main/kotlin/org/kotlinnative/translator/llvm/types/LLVMReferenceType.kt +++ b/translator/src/main/kotlin/org/kotlinnative/translator/llvm/types/LLVMReferenceType.kt @@ -30,5 +30,5 @@ class LLVMReferenceType(val type: String, var prefix: String = "", override val LLVMExpression(LLVMBooleanType(), "icmp eq ${firstOp.getType()} $firstOp, ${if (secondOp.type is LLVMNullType) "null" else "$secondOp"}") override fun operatorNeq(firstOp: LLVMSingleValue, secondOp: LLVMSingleValue): LLVMExpression = - LLVMExpression(LLVMBooleanType(), "icmp neq ${firstOp.getType()} $firstOp, ${if (secondOp.type is LLVMNullType) "null" else "$secondOp"}") + LLVMExpression(LLVMBooleanType(), "icmp ne ${firstOp.getType()} $firstOp, ${if (secondOp.type is LLVMNullType) "null" else "$secondOp"}") } \ No newline at end of file