diff options
author | Tom Smeding <tom@tomsmeding.com> | 2025-04-24 21:16:57 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2025-04-24 21:16:57 +0200 |
commit | e666c3d9886634f76a68c4ab31556d9d6451e3a5 (patch) | |
tree | 12948ca9aafba27a19e639fdcdb37a37add1f1be | |
parent | bbf7e83f8c33941d37a6344e6a79c42af2d0a6a3 (diff) |
Compile: Reset accidentally enabled debug switch
-rw-r--r-- | src/Compile.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Compile.hs b/src/Compile.hs index aa23797..fe99c4d 100644 --- a/src/Compile.hs +++ b/src/Compile.hs @@ -66,7 +66,7 @@ debugShapes :: Bool; debugShapes = toEnum 0 -- | Print information on allocation debugAllocs :: Bool; debugAllocs = toEnum 0 -- | Emit extra C code that checks stuff -emitChecks :: Bool; emitChecks = toEnum 1 +emitChecks :: Bool; emitChecks = toEnum 0 compile :: SList STy env -> Ex env t -> IO (SList Value env -> IO (Rep t)) |