packages feed

llvm-general-3.3.0.0: src/LLVM/General/Module.hs

-- | A 'Module' holds a C++ LLVM IR module. 'Module's may be converted to or from strings or Haskell ASTs, or
-- added to an 'LLVM.General.ExecutionEngine' and so JIT compiled to get funciton pointers.
module LLVM.General.Module (
    Module,
    withModuleFromAST,
    moduleAST,
    withModuleFromString,
    moduleString
  ) where

import LLVM.General.Internal.Module