From b8bd344e54c79983b0e8a54509bb8bf0a0b93d68 Mon Sep 17 00:00:00 2001 From: whitequark Date: Thu, 31 Mar 2016 06:40:25 +0000 Subject: [PATCH] compiler: use correct data layout. --- artiq/compiler/targets.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/artiq/compiler/targets.py b/artiq/compiler/targets.py index ba79e0121..a319979c4 100644 --- a/artiq/compiler/targets.py +++ b/artiq/compiler/targets.py @@ -224,6 +224,7 @@ class NativeTarget(Target): class OR1KTarget(Target): triple = "or1k-linux" - data_layout = "E-m:e-p:32:32-i64:32-f64:32-v64:32-v128:32-a:0:32-n32" + data_layout = "E-m:e-p:32:32-i8:8:8-i16:16:16-i64:32:32-" \ + "f64:32:32-v64:32:32-v128:32:32-a0:0:32-n32" features = ["mul", "div", "ffl1", "cmov", "addc"] print_function = "core_log"