From: David Terei Date: Wed, 14 Jul 2010 15:33:39 +0000 (+0000) Subject: LLVM: Fix mistype in last commit which broke TNTC under win/linux. X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=5d2f6a5323df8586c6534a50ebd6f06f1bf19109 LLVM: Fix mistype in last commit which broke TNTC under win/linux. --- diff --git a/compiler/llvmGen/LlvmCodeGen/Ppr.hs b/compiler/llvmGen/LlvmCodeGen/Ppr.hs index daadc55..6c65f18 100644 --- a/compiler/llvmGen/LlvmCodeGen/Ppr.hs +++ b/compiler/llvmGen/LlvmCodeGen/Ppr.hs @@ -135,6 +135,6 @@ mkLayoutSection n -- section specifier will be replaced with '.text' by the mangler. = Just (fsLit $ "__STRIP,__me" ++ show n) #else - = Just (fsLit $ ".text # .text " ++ show n ++ " #") + = Just (fsLit $ ".text; .text " ++ show n ++ " #") #endif