diff options
-rw-r--r-- | compiler/llvmGen/LlvmCodeGen/Ppr.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/compiler/llvmGen/LlvmCodeGen/Ppr.hs b/compiler/llvmGen/LlvmCodeGen/Ppr.hs index 2f4fbfab16..399a82f451 100644 --- a/compiler/llvmGen/LlvmCodeGen/Ppr.hs +++ b/compiler/llvmGen/LlvmCodeGen/Ppr.hs @@ -51,12 +51,12 @@ moduleLayout = $+$ text "target triple = \"x86_64-linux-gnu\"" #endif --- #elif defined (arm_TARGET_ARCH) +#elif defined (arm_TARGET_ARCH) --- #if linux_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-v64:64:64-v128:64:128-a0:0:64-n32\"" --- $+$ text "target triple = \"arm-unknown-linux-gnueabi\"" --- #endif +#if linux_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-v64:64:64-v128:64:128-a0:0:64-n32\"" + $+$ text "target triple = \"arm-unknown-linux-gnueabi\"" +#endif #else -- FIX: Other targets |