[commit: ghc] wip/llvm-3.6: llvmGen: Only support LLVM 3.6 (81615f0)
git at git.haskell.org
git at git.haskell.org
Tue Jan 20 16:54:54 UTC 2015
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/llvm-3.6
Link : http://ghc.haskell.org/trac/ghc/changeset/81615f09d4eb2ad1a7267741f63df7d495effe9f/ghc
>---------------------------------------------------------------
commit 81615f09d4eb2ad1a7267741f63df7d495effe9f
Author: Ben Gamari <bgamari.foss at gmail.com>
Date: Fri Nov 28 10:17:19 2014 -0500
llvmGen: Only support LLVM 3.6
>---------------------------------------------------------------
81615f09d4eb2ad1a7267741f63df7d495effe9f
compiler/llvmGen/LlvmCodeGen/Base.hs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/compiler/llvmGen/LlvmCodeGen/Base.hs b/compiler/llvmGen/LlvmCodeGen/Base.hs
index a23b5ef..15918a3 100644
--- a/compiler/llvmGen/LlvmCodeGen/Base.hs
+++ b/compiler/llvmGen/LlvmCodeGen/Base.hs
@@ -176,13 +176,13 @@ type LlvmVersion = Int
-- | The LLVM Version we assume if we don't know
defaultLlvmVersion :: LlvmVersion
-defaultLlvmVersion = 30
+defaultLlvmVersion = 36
minSupportLlvmVersion :: LlvmVersion
-minSupportLlvmVersion = 28
+minSupportLlvmVersion = 36
maxSupportLlvmVersion :: LlvmVersion
-maxSupportLlvmVersion = 35
+maxSupportLlvmVersion = 36
-- ----------------------------------------------------------------------------
-- * Environment Handling
More information about the ghc-commits
mailing list