mirror of
https://github.com/anoma/juvix.git
synced 2025-01-07 16:22:14 +03:00
3269c8f369
Adds a JuvixAsm transformation to filter out unreachable functions. This will make the generated nock/cairo code smaller.
10 lines
347 B
Haskell
10 lines
347 B
Haskell
module Asm.Transformation where
|
|
|
|
import Asm.Transformation.Apply qualified as Apply
|
|
import Asm.Transformation.Prealloc qualified as Prealloc
|
|
import Asm.Transformation.Reachability qualified as Reachability
|
|
import Base
|
|
|
|
allTests :: TestTree
|
|
allTests = testGroup "JuvixAsm transformations" [Prealloc.allTests, Apply.allTests, Reachability.allTests]
|