[JS IR BE] Fix logic boolean operations
This commit is contained in:
committed by
Roman Artemev
parent
6ac4fd2e5f
commit
dbb360555c
+2
-2
@@ -72,8 +72,8 @@ class IntrinsicifyCallsLowering(private val context: JsIrBackendContext) : FileL
|
||||
}
|
||||
|
||||
context.irBuiltIns.bool.let {
|
||||
op(it, OperatorNames.AND, context.intrinsics.jsAnd)
|
||||
op(it, OperatorNames.OR, context.intrinsics.jsOr)
|
||||
op(it, OperatorNames.AND, context.intrinsics.jsBitAnd)
|
||||
op(it, OperatorNames.OR, context.intrinsics.jsBitOr)
|
||||
op(it, OperatorNames.NOT, context.intrinsics.jsNot)
|
||||
op(it, OperatorNames.XOR, context.intrinsics.jsBitXor)
|
||||
}
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
// IGNORE_BACKEND: JS_IR
|
||||
// EXPECTED_REACHABLE_NODES: 1135
|
||||
var log = ""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user