Add win32 datalayout support to llvm backend
authorDavid Terei <davidterei@gmail.com>
Fri, 18 Jun 2010 13:17:33 +0000 (13:17 +0000)
committerDavid Terei <davidterei@gmail.com>
Fri, 18 Jun 2010 13:17:33 +0000 (13:17 +0000)
compiler/llvmGen/LlvmCodeGen/Ppr.hs

index cdf968a..689be6c 100644 (file)
@@ -28,12 +28,15 @@ import Util
 -- | LLVM module layout description for the host target
 moduleLayout :: Doc
 moduleLayout =
-#ifdef i386_TARGET_ARCH
+#if i386_TARGET_ARCH
 
-#ifdef darwin_TARGET_OS
+#if darwin_TARGET_OS
     text "target datalayout = \"e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128\""
     $+$ text "target triple = \"i386-apple-darwin9.8\""
-#else
+#elif mingw32_TARGET_OS
+    text "target datalayout = \"e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f80:128:128-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32\""
+    $+$ text "target triple = \"i686-pc-win32\""
+#else /* Linux */
     text "target datalayout = \"e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32\""
     $+$ text "target triple = \"i386-linux-gnu\""
 #endif