()
| 392 | // addressing guarantees identical bytes. (Alpha-collapsed blocks |
| 393 | // re-store the shared address once per member.) The cached mode |
| 394 | // keeps insert-overwrite: there a re-store can upgrade a |
| 395 | // cache-less lazy-loaded entry to a cached one. |
| 396 | if self.consts.contains_key(&addr) { |
| 397 | return; |
| 398 | } |
| 399 | self.consts.insert(addr, LazyConstant::from_constant_uncached(&constant)); |
| 400 | } else { |
| 401 | self.consts.insert(addr, LazyConstant::from_constant(constant)); |
| 402 | } |
| 403 | } |
no outgoing calls