From 1150b03a29c1281de7509bf3e689a72874bbdbf9 Mon Sep 17 00:00:00 2001 From: Jesse Brault Date: Sat, 20 Jun 2026 16:18:59 -0500 Subject: [PATCH] Add youtube link for allocation algorithms. --- dmc-lib/src/ir/register_allocation.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dmc-lib/src/ir/register_allocation.rs b/dmc-lib/src/ir/register_allocation.rs index 627de51..6386a49 100644 --- a/dmc-lib/src/ir/register_allocation.rs +++ b/dmc-lib/src/ir/register_allocation.rs @@ -1,3 +1,5 @@ +/// Used this video as source for algorithms in this module: +/// https://www.youtube.com/watch?v=eWp_-XCwN1A use crate::ir::ir_block::IrBlock; use crate::ir::ir_variable::IrVariableId; use crate::ir::variable_locations::VariableLocations;