diff options
author | bd <bdunahu@operationnull.com> | 2025-01-28 18:12:54 -0500 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-01-28 18:12:54 -0500 |
commit | 733838d0a55de74e25e879f9fcf43c5c5c78e24a (patch) | |
tree | c0a7ed819d45fb1abbb3128542add3c20437ecfe /src/backend/ast/ir.scm | |
parent | 5cea39649d613864f3e7a688cb2a7ecbde8bd6cd (diff) |
Fix namespace issues related to IR symbols
Diffstat (limited to 'src/backend/ast/ir.scm')
-rw-r--r-- | src/backend/ast/ir.scm | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/backend/ast/ir.scm b/src/backend/ast/ir.scm index e4c1713..2b4a468 100644 --- a/src/backend/ast/ir.scm +++ b/src/backend/ast/ir.scm @@ -1,14 +1,14 @@ (define-module (backend ast ir) - #:export (prog - srout - neg - not - mov - stack - reg - imm - tmp - ret)) + #:export (prog-ir + srout-ir + neg-ir + not-ir + mov-ir + stack-ir + reg-ir + imm-ir + tmp-ir + ret-ir)) ;;; Commentary: ;;; @@ -24,4 +24,4 @@ (cons 'names args)) ...)))) (def-ir-nodes - prog srout neg not mov stack reg imm tmp ret) + prog-ir srout-ir neg-ir not-ir mov-ir stack-ir reg-ir imm-ir tmp-ir ret-ir) |