mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
PR tidy-ups
This commit is contained in:
parent
93448182e4
commit
7ea59ad9d4
5 changed files with 41 additions and 29 deletions
|
@ -111,7 +111,10 @@ impl SymbolStorage {
|
|||
(ValueType::F32, 4) => F32Store(ALIGN_4, to_offset),
|
||||
(ValueType::F64, 8) => F64Store(ALIGN_8, to_offset),
|
||||
_ => {
|
||||
return Err(format!("Cannot store {:?} with alignment of {:?}", value_type, size));
|
||||
return Err(format!(
|
||||
"Cannot store {:?} with alignment of {:?}",
|
||||
value_type, size
|
||||
));
|
||||
}
|
||||
};
|
||||
instructions.push(GetLocal(to_pointer.0));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue