mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 15:51:12 +00:00
Make symbols store as RCs
This commit is contained in:
parent
d1bcc8d55b
commit
1153e0833b
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ struct StorageManager<
|
|||
CC: CallConv<GeneralReg, FloatReg>,
|
||||
> {
|
||||
phantom_cc: PhantomData<CC>,
|
||||
symbol_storage_map: MutMap<Symbol, Storage<'a, GeneralReg, FloatReg>>,
|
||||
symbol_storage_map: MutMap<Symbol, Rc<Storage<'a, GeneralReg, FloatReg>>>,
|
||||
|
||||
// This should probably be smarter than a vec.
|
||||
// There are certain registers we should always use first. With pushing and popping, this could get mixed.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue