Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master
http://hackage.haskell.org/trac/ghc/changeset/e5ca5c7fce35136d869509b6f358d9c237cb10db >--------------------------------------------------------------- commit e5ca5c7fce35136d869509b6f358d9c237cb10db Author: David Terei <[email protected]> Date: Mon Jun 25 12:17:41 2012 -0700 tweak llvm version warning message >--------------------------------------------------------------- compiler/llvmGen/LlvmCodeGen.hs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/llvmGen/LlvmCodeGen.hs b/compiler/llvmGen/LlvmCodeGen.hs index 62335b4..5c2e420 100644 --- a/compiler/llvmGen/LlvmCodeGen.hs +++ b/compiler/llvmGen/LlvmCodeGen.hs @@ -68,11 +68,11 @@ llvmCodeGen dflags h us cmms writeIORef (llvmVersion dflags) ver when (ver < minSupportLlvmVersion) $ errorMsg dflags (text "You are using an old version of LLVM that" - <> text "isn't supported anymore!" + <> text " isn't supported anymore!" $+$ text "We will try though...") when (ver > maxSupportLlvmVersion) $ putMsg dflags (text "You are using a new version of LLVM that" - <> text "hasn't been tested yet!" + <> text " hasn't been tested yet!" $+$ text "We will try though...") return ver _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
