2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-29 13:13:34 +08:00

compiler: document Target.little_endian

This commit is contained in:
Sebastien Bourdeauducq 2018-12-02 19:07:18 +08:00
parent 981a77834a
commit 421834fa3e

View File

@ -75,11 +75,15 @@ class Target:
:var print_function: (string)
Name of a formatted print functions (with the signature of ``printf``)
provided by the target, e.g. ``"printf"``.
:var little_endian: (boolean)
Whether the code will be executed on a little-endian machine. This cannot be always
determined from data_layout due to JIT.
"""
triple = "unknown"
data_layout = ""
features = []
print_function = "printf"
little_endian = False
def __init__(self):