From 5d2f6a5323df8586c6534a50ebd6f06f1bf19109 Mon Sep 17 00:00:00 2001 From: David Terei Date: Wed, 14 Jul 2010 15:33:39 +0000 Subject: [PATCH] LLVM: Fix mistype in last commit which broke TNTC under win/linux. --- compiler/llvmGen/LlvmCodeGen/Ppr.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.7.10.4