forked from M-Labs/nac3
nac3core/codegen/expr: fixed typo
This commit is contained in:
parent
6e424a6a3e
commit
d1215bf5ac
|
@ -372,7 +372,7 @@ impl<'ctx, 'a> CodeGenContext<'ctx, 'a> {
|
||||||
}
|
}
|
||||||
ExprKind::BinOp { op, left, right } => {
|
ExprKind::BinOp { op, left, right } => {
|
||||||
let ty1 = self.unifier.get_representative(left.custom.unwrap());
|
let ty1 = self.unifier.get_representative(left.custom.unwrap());
|
||||||
let ty2 = self.unifier.get_representative(left.custom.unwrap());
|
let ty2 = self.unifier.get_representative(right.custom.unwrap());
|
||||||
let left = self.gen_expr(left);
|
let left = self.gen_expr(left);
|
||||||
let right = self.gen_expr(right);
|
let right = self.gen_expr(right);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue