diff options
author | Geoffrey Mainland <gmainlan@microsoft.com> | 2011-10-31 13:44:48 +0000 |
---|---|---|
committer | Geoffrey Mainland <gmainlan@microsoft.com> | 2013-02-01 22:00:23 +0000 |
commit | a544c72a17ca6627c68d11105f7eed2b3ed2e0ec (patch) | |
tree | dc2548c612aa68acbfcf0b0788fd5bc07a9a44a6 /compiler/llvmGen/Llvm.hs | |
parent | d60df8246c208ba37da20a97c974d9318d8ec02b (diff) | |
download | haskell-a544c72a17ca6627c68d11105f7eed2b3ed2e0ec.tar.gz |
Add support for LLVM vectors.
This patch adds support for LLVM vectors and vector operations to our internal
LLVM abstract syntax data types.
Diffstat (limited to 'compiler/llvmGen/Llvm.hs')
-rw-r--r-- | compiler/llvmGen/Llvm.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/llvmGen/Llvm.hs b/compiler/llvmGen/Llvm.hs index d05a90609e..d69b88ce23 100644 --- a/compiler/llvmGen/Llvm.hs +++ b/compiler/llvmGen/Llvm.hs @@ -43,7 +43,7 @@ module Llvm ( -- ** Operations on the type system. isGlobal, getLitType, getLit, getName, getPlainName, getVarType, getLink, getStatType, getGlobalVar, getGlobalType, pVarLift, pVarLower, - pLift, pLower, isInt, isFloat, isPointer, llvmWidthInBits, + pLift, pLower, isInt, isFloat, isPointer, isVector, llvmWidthInBits, -- * Pretty Printing ppLlvmModule, ppLlvmComments, ppLlvmComment, ppLlvmGlobals, |