forked from M-Labs/artiq
compiler: use correct data layout.
This commit is contained in:
parent
c6516f3c83
commit
b8bd344e54
|
@ -224,6 +224,7 @@ class NativeTarget(Target):
|
||||||
|
|
||||||
class OR1KTarget(Target):
|
class OR1KTarget(Target):
|
||||||
triple = "or1k-linux"
|
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"]
|
features = ["mul", "div", "ffl1", "cmov", "addc"]
|
||||||
print_function = "core_log"
|
print_function = "core_log"
|
||||||
|
|
Loading…
Reference in New Issue