llvm-pretty-bc-parser-0.1.3.0: LLVM bitcode parsing library

Safe HaskellNone

Data.LLVM.BitCode

Contents

Synopsis

Bitcode Parsing

parseBitCode :: ByteString -> IO (Either Error Module)Source

parseBitCodeFromFile :: FilePath -> IO (Either Error Module)Source

parseBitCodeLazy :: ByteString -> IO (Either Error Module)Source

parseBitCodeLazyFromFile :: FilePath -> IO (Either Error Module)Source

Re-exported

data Error Source

Constructors

Error 

Fields

errContext :: [String]
 
errMessage :: String
 

Instances

Show Error