aboutsummaryrefslogtreecommitdiff
path: root/Main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Main.hs')
-rw-r--r--Main.hs2
1 files changed, 0 insertions, 2 deletions
diff --git a/Main.hs b/Main.hs
index fb557e8..b8c50e6 100644
--- a/Main.hs
+++ b/Main.hs
@@ -8,7 +8,6 @@ import Debug.Trace
import BuildIR
import CodeGen
import Defs
-import InternStrings
import Optimiser
import Pretty
import ProgramParser
@@ -34,7 +33,6 @@ performCompile source = do
let eres = return source
>>= parseProgram <?> "Parse error"
>>= typeCheck <?> "Type error"
- -- >>= internStrings <?> "Error interning strings"
>>= buildIR <?> "IR building error"
>>= optimise <?> "Error while optimising"
>>= return . traceShowId