Add Return

This commit is contained in:
Jef
2018-12-19 16:39:20 +00:00
parent c52cf1493a
commit 9decdca525
2 changed files with 14 additions and 1 deletions

View File

@@ -597,7 +597,8 @@ pub fn drop(ctx: &mut Context) {
);
}
StackValue::Temp(gpr) => free_value(ctx, Value::Temp(gpr)),
_ => {}
StackValue::Local(loc) => free_value(ctx, Value::Local(loc)),
StackValue::Immediate(imm) => free_value(ctx, Value::Immediate(imm)),
}
}