aboutsummaryrefslogtreecommitdiff
path: root/Main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Main.hs')
-rw-r--r--Main.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/Main.hs b/Main.hs
index f1307c7..4c0f68d 100644
--- a/Main.hs
+++ b/Main.hs
@@ -35,11 +35,10 @@ main = do
let eres = return source
>>= parseProgram <?> "Parse error"
- -- >>= return . traceShowId
>>= typeCheck <?> "Type error"
>>= buildIR <?> "IR building error"
- -- >>= return . tracePrettyId
>>= optimise <?> "Error while optimising"
+ >>= return . traceShowId
>>= verify <?> "Verify error"
>>= return . tracePrettyId
>>= codegen <?> "Codegen error"