hLLVM 0.5.0.0 → 0.5.0.1
raw patch · 2 files changed
+8/−12 lines, 2 files
Files
- hLLVM.cabal +8/−9
- src/Llvm/Data/Type.hs +0/−3
hLLVM.cabal view
@@ -1,20 +1,19 @@ name: hLLVM-version: 0.5.0.0+version: 0.5.0.1 license: BSD3 license-file: LICENSE author: Ning Wang <email@ningwang.org> maintainer: Ning Wang <email@ningwang.org> build-Type: Simple-cabal-Version: >= 1.10+cabal-Version: >= 1.20 stability: 0.5-synopsis: A library for processing LLVM assembly codes+synopsis: A library for analyzing and transforming LLVM (3.5) assembly codes category: Compilers/Interpreters-description: A pure Haskell library for analyzing and transforming LLVM assembly codes. - It includes:- 1) a parser to parse LLVM code in its text form- 2) an internal IR that can be feed into Hoopl- 3) a set of utility functions to convert LLVM AST to and from the internal IR - 4) a set of utility functions to query the IR+description: A pure Haskell library for analyzing and transforming LLVM assembly codes. It includes:+ 1) a parser to parse LLVM code in its text form; + 2) an internal IR that is designed for Hoopl and direct composition; + 3) a set of utility functions to convert LLVM AST to and from the internal IR; + 4) a set of utility functions to query the IR. extra-source-files: README.md, LICENSE, CHANGES, TODO
src/Llvm/Data/Type.hs view
@@ -32,9 +32,6 @@ | Tpointer Type AddrSpace | Tfunction Type TypeParamList [FunAttr] | Tvoid- -- | deref a type will strip off Tpointer, this is a syntatical- -- | representation that should be evaluated later.- -- | Tderef Type deriving (Eq,Ord,Show)