diff options
Diffstat (limited to 'src/backend/generator/allocate.scm')
-rw-r--r-- | src/backend/generator/allocate.scm | 4 |
1 files changed, 2 insertions, 2 deletions
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 |