compiler/targets: Fix refactoring leftover for native (host) target

It's unclear whether this actually caused any issues, or why this
wasn't done before (instead just setting the now-removed endianness
flag).
pull/2000/head
David Nadlinger 2022-11-04 18:16:19 +00:00 committed by Sébastien Bourdeauducq
parent defc69d9c3
commit beff15de5e
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ class NativeTarget(Target):
def __init__(self):
super().__init__()
self.triple = llvm.get_default_triple()
host_data_layout = str(llvm.targets.Target.from_default_triple().create_target_machine().target_data)
self.data_layout = str(llvm.targets.Target.from_default_triple().create_target_machine().target_data)
class RV32IMATarget(Target):
triple = "riscv32-unknown-linux"