hunk ./examples/Makefile 27 +%.s: %.bc + llc -f $< + +# This would lead to a cycle with llvm-as. +# %.ll: %.bc +# llvm-dis -f $< + +%-dis.ll: %.bc + llvm-dis -o $@ -f $< + +%.bc: %.ll + llvm-as -f $< + +%-opt.bc: %.bc + opt -O3 < $< > $@ + hunk ./LLVM/Core.hs 78 -import LLVM.Core.Data hiding (Vector, Array) -import LLVM.Core.Data(Vector, Array) +import LLVM.Core.Data hunk ./llvm.cabal 6 -description: Bindings to the LLVM compiler toolkit. - * New in 0.9.1.0: Util.Memory for memory related intrinsics - . - * New in 0.9.0.0: Adapted to LLVM 2.8 (removed support for Union types); - . - * New in 0.8.2.0: Support for GHC calling convention. - . - * New in 0.8.1.0: Numerous small changes. - . - * New in 0.8.0.0: Adapted to LLVM 2.7; - . - * New in 0.7.1.0: More attributes - . - * New in 0.7.0.1: MacOS fixes. - . - * New in 0.7.0.0: Adapted to LLVM 2.6; - . - * New in 0.6.8.0: Add functions to allow freeing function resources; - . - * New in 0.6.7.0: Struct types; - . - * New in 0.6.6.0: Bug fixes; - . - * New in 0.6.5.0: Adapted to LLVM 2.5; +description: + Bindings to the LLVM compiler toolkit. + . + * New in 0.9.1.0: Util.Memory for memory related intrinsics + . + * New in 0.9.0.0: Adapted to LLVM 2.8 (removed support for Union types); + . + * New in 0.8.2.0: Support for GHC calling convention. + . + * New in 0.8.1.0: Numerous small changes. + . + * New in 0.8.0.0: Adapted to LLVM 2.7; + . + * New in 0.7.1.0: More attributes + . + * New in 0.7.0.1: MacOS fixes. + . + * New in 0.7.0.0: Adapted to LLVM 2.6; + . + * New in 0.6.8.0: Add functions to allow freeing function resources; + . + * New in 0.6.7.0: Struct types; + . + * New in 0.6.6.0: Bug fixes; + . + * New in 0.6.5.0: Adapted to LLVM 2.5;