Skip to content

Commit

Permalink
Rollup merge of rust-lang#72695 - jclulow:illumos-llvm-catchup, r=nikic
Browse files Browse the repository at this point in the history
update data layout for illumos x86

In a recent change, 8b19922,
adjustments were made to the data layout we pass to LLVM.
Unfortunately, the illumos target was missed in this change.
See also: rust-lang#67900
  • Loading branch information
Dylan-DPC committed May 29, 2020
2 parents 71512e4 + bb745d6 commit c9f07d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/librustc_target/spec/x86_64_unknown_illumos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ pub fn target() -> TargetResult {
target_endian: "little".to_string(),
target_pointer_width: "64".to_string(),
target_c_int_width: "32".to_string(),
data_layout: "e-m:e-i64:64-f80:128-n8:16:32:64-S128".to_string(),
data_layout: "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
.to_string(),
arch: "x86_64".to_string(),
target_os: "illumos".to_string(),
target_env: String::new(),
Expand Down

0 comments on commit c9f07d3

Please sign in to comment.