LLVM: Fix mistype in last commit which broke TNTC under win/linux.
authorDavid Terei <davidterei@gmail.com>
Wed, 14 Jul 2010 15:33:39 +0000 (15:33 +0000)
committerDavid Terei <davidterei@gmail.com>
Wed, 14 Jul 2010 15:33:39 +0000 (15:33 +0000)
compiler/llvmGen/LlvmCodeGen/Ppr.hs

index daadc55..6c65f18 100644 (file)
@@ -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