Moved modules into a proper folder structure.

This commit is contained in:
Samuel Hammersberg 2023-03-08 10:35:07 +01:00
parent ac0ac2dac7
commit d5dd7896d8
9 changed files with 66 additions and 180 deletions

View file

@ -10,8 +10,8 @@ module Codegen.LlvmIr (
CallingConvention (..)
) where
import Data.List (intercalate)
import TypeCheckerIr
import Data.List (intercalate)
import TypeChecker.TypeCheckerIr
data CallingConvention = TailCC | FastCC | CCC | ColdCC
instance Show CallingConvention where