packages feed

llvm-general-3.2.0.3: 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 function pointers.
module LLVM.General.Module (
    Module,
    withModuleFromAST,
    moduleAST,
    writeBitcodeToFile,
    withModuleFromString,
    moduleString
  ) where

import LLVM.General.Internal.Module