fix(phase-285): restore weak_basic_llvm + complete LLVM detection/quick SSOT

This commit is contained in:
2025-12-26 16:32:37 +09:00
parent ce2baa0d47
commit 606e236d6d
9 changed files with 48 additions and 35 deletions

View File

@ -73,3 +73,8 @@ pub fn get(h: u64) -> Option<Arc<dyn NyashBox>> {
pub fn snapshot() -> Vec<Arc<dyn NyashBox>> {
reg().snapshot()
}
/// Drop a handle from the registry, decrementing its reference count
pub fn drop_handle(h: u64) {
reg().drop_handle(h)
}