Skip to content

Commit bc1d6bb

Browse files
committed
Add missing op to as_inplace
1 parent 9cc108d commit bc1d6bb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

crates/compiler-core/src/bytecode.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1173,6 +1173,7 @@ impl BinaryOperator {
11731173
pub const fn as_inplace(self) -> Self {
11741174
match self {
11751175
Self::Add => Self::InplaceAdd,
1176+
Self::And => Self::InplaceAnd,
11761177
Self::FloorDivide => Self::InplaceFloorDivide,
11771178
Self::Lshift => Self::InplaceLshift,
11781179
Self::MatrixMultiply => Self::InplaceMatrixMultiply,

0 commit comments

Comments
 (0)