summaryrefslogtreecommitdiff
path: root/lisphs.cabal
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2019-12-13 13:39:35 +0100
committertomsmeding <tom.smeding@gmail.com>2019-12-13 13:39:35 +0100
commit3595d3c75503158e4eedaedbac8e81cbbe5ae54b (patch)
treed5de3449acabdf0af4d7e361d1063d3934bb0064 /lisphs.cabal
parent80fee1089b659a7c7ee3a96d4cf999d369c0eb48 (diff)
Follow caller-save convention using stack, not full state restore
Diffstat (limited to 'lisphs.cabal')
-rw-r--r--lisphs.cabal2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisphs.cabal b/lisphs.cabal
index 32aebbe..131deb4 100644
--- a/lisphs.cabal
+++ b/lisphs.cabal
@@ -13,4 +13,4 @@ executable lisp
ghc-options: -Wall -O2
build-depends: base >= 4 && < 5,
containers, filepath, mtl, parsec, text
- other-modules: AST, Compiler, CompilerMacros, DString, Intermediate, Liveness, Optimiser, Parser, Util, VM
+ other-modules: AST, Compiler, CompilerMacros, DString, Intermediate, Liveness, Optimiser, Parser, Stackify, Util, VM