/* * reg.c — register allocator. The current cgen pins everything to AX * with BX as a scratch top-of-stack — no real allocation. This file * is the seam where a linear-scan or graph-colouring pass would land * later; today it's empty. */ #include "gc.h" void reg_run(Cg *c) { (void)c; }