selfhost: add *_Drop wrappers to stdlib types; auto-drop uses _Drop instead of _Free
- Array.bux, Channel.bux, Set.bux, Map.bux: add *_Drop<T> delegating to *_Free - hir_lower.bux: Lcx_BuildAutoDropFree searches for _Drop suffix instead of _Free - Skip direct lowering of generic functions (only monomorphized instances)
This commit is contained in:
@@ -68,4 +68,8 @@ func Set_Free<T>(s: *Set<T>) {
|
||||
s.len = 0;
|
||||
}
|
||||
|
||||
func Set_Drop<T>(s: *Set<T>) {
|
||||
Set_Free<T>(s);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user