mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
Remove borrow constraint, it is used for refcounting before the backend
This commit is contained in:
parent
1fb0c8043f
commit
006fe3beff
1 changed files with 0 additions and 6 deletions
|
@ -573,12 +573,6 @@ impl<
|
||||||
remainder: &'a Stmt<'a>,
|
remainder: &'a Stmt<'a>,
|
||||||
ret_layout: &Layout<'a>,
|
ret_layout: &Layout<'a>,
|
||||||
) -> Result<(), String> {
|
) -> Result<(), String> {
|
||||||
for param in parameters {
|
|
||||||
if param.borrow {
|
|
||||||
return Err("Join: borrowed parameters not yet supported".to_string());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create jump to remaining.
|
// Create jump to remaining.
|
||||||
let jmp_location = self.buf.len();
|
let jmp_location = self.buf.len();
|
||||||
let start_offset = ASM::jmp_imm32(&mut self.buf, 0x1234_5678);
|
let start_offset = ASM::jmp_imm32(&mut self.buf, 0x1234_5678);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue