forked from M-Labs/nac3
codegen/expr: fixed warnings
This commit is contained in:
parent
957ceb74e4
commit
c4d6b3691a
|
@ -258,7 +258,6 @@ impl<'ctx, 'a> CodeGenContext<'ctx, 'a> {
|
||||||
}
|
}
|
||||||
ExprKind::Name { id, .. } => {
|
ExprKind::Name { id, .. } => {
|
||||||
let ptr = self.var_assignment.get(id).unwrap();
|
let ptr = self.var_assignment.get(id).unwrap();
|
||||||
let primitives = &self.primitives;
|
|
||||||
self.builder.build_load(*ptr, "load")
|
self.builder.build_load(*ptr, "load")
|
||||||
}
|
}
|
||||||
ExprKind::List { elts, .. } => {
|
ExprKind::List { elts, .. } => {
|
||||||
|
@ -539,7 +538,7 @@ impl<'ctx, 'a> CodeGenContext<'ctx, 'a> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ExprKind::Subscript { value, slice, .. } => {
|
ExprKind::Subscript { value, slice, .. } => {
|
||||||
if let TypeEnum::TList { ty } = &*self.unifier.get_ty(value.custom.unwrap()) {
|
if let TypeEnum::TList { .. } = &*self.unifier.get_ty(value.custom.unwrap()) {
|
||||||
if let ExprKind::Slice { .. } = slice.node {
|
if let ExprKind::Slice { .. } = slice.node {
|
||||||
unimplemented!()
|
unimplemented!()
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue