Remove borrow constraint, it is used for refcounting before the backend

This commit is contained in:
Brendan Hansknecht 2021-09-21 15:09:10 -07:00
parent 1fb0c8043f
commit 006fe3beff

View file

@ -573,12 +573,6 @@ impl<
remainder: &'a Stmt<'a>,
ret_layout: &Layout<'a>,
) -> Result<(), String> {
for param in parameters {
if param.borrow {
return Err("Join: borrowed parameters not yet supported".to_string());
}
}
// Create jump to remaining.
let jmp_location = self.buf.len();
let start_offset = ASM::jmp_imm32(&mut self.buf, 0x1234_5678);