From 733838d0a55de74e25e879f9fcf43c5c5c78e24a Mon Sep 17 00:00:00 2001 From: bd Date: Tue, 28 Jan 2025 18:12:54 -0500 Subject: Fix namespace issues related to IR symbols --- src/backend/generator/allocate.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/generator/allocate.scm') diff --git a/src/backend/generator/allocate.scm b/src/backend/generator/allocate.scm index 0d417db..c5d7c05 100644 --- a/src/backend/generator/allocate.scm +++ b/src/backend/generator/allocate.scm @@ -7,8 +7,8 @@ (define (allocate n) (cond ((null? n) n) - ((eq? (car n) 'tmp) - (list 'stack (make-location (cadr n)))) + ((eq? (car n) 'tmp-ir) + (list 'stack-ir (make-location (cadr n)))) ((list? (car n)) (cons (allocate (car n)) (allocate (cdr n)))) (#t -- cgit v1.2.3