Skip to content

Commit e27c716

Browse files
Update ll_builder.py
1 parent b95facd commit e27c716

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypyc/irbuild/ll_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1579,7 +1579,7 @@ def is_string_literal(value: Value) -> TypeGuard[LoadLiteral]:
15791579

15801580
elif op == "!=":
15811581
# perform a standard equality check, then negate
1582-
eq = compare_strings(lhs, rhs, "==", line)
1582+
eq = self.compare_strings(lhs, rhs, "==", line)
15831583
return self.add(ComparisonOp(eq, self.false(), ComparisonOp.EQ, line))
15841584

15851585
# TODO: modify 'str' to use same interface as 'compare_bytes' as it would avoid

0 commit comments

Comments
 (0)