Skip to content

Commit ec55a05

Browse files
committed
Update more data layouts
1 parent ce2d91d commit ec55a05

6 files changed

+7
-7
lines changed

compiler/rustc_target/src/spec/targets/i586_pc_nto_qnx700.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pub fn target() -> Target {
55
llvm_target: "i586-pc-unknown".into(),
66
pointer_width: 32,
77
data_layout: "e-m:e-p:32:32-p270:32:32-p271:32:32-p272:64:64-\
8-
f64:32:64-f80:32-n8:16:32-S128"
8+
i128:128-f64:32:64-f80:32-n8:16:32-S128"
99
.into(),
1010
arch: "x86".into(),
1111
options: TargetOptions {

compiler/rustc_target/src/spec/targets/i586_unknown_netbsd.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub fn target() -> Target {
1010
llvm_target: "i586-unknown-netbsdelf".into(),
1111
pointer_width: 32,
1212
data_layout: "e-m:e-p:32:32-p270:32:32-p271:32:32-p272:64:64-\
13-
f64:32:64-f80:32-n8:16:32-S128"
13+
i128:128-f64:32:64-f80:32-n8:16:32-S128"
1414
.into(),
1515
arch: "x86".into(),
1616
options: TargetOptions { mcount: "__mcount".into(), ..base },

compiler/rustc_target/src/spec/targets/i686_unknown_uefi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ pub fn target() -> Target {
8080
llvm_target: "i686-unknown-windows-gnu".into(),
8181
pointer_width: 32,
8282
data_layout: "e-m:x-p:32:32-p270:32:32-p271:32:32-p272:64:64-\
83-
i64:64-f80:32-n8:16:32-a:0:32-S32"
83+
i64:64-i128:128-f80:32-n8:16:32-a:0:32-S32"
8484
.into(),
8585
arch: "x86".into(),
8686

compiler/rustc_target/src/spec/targets/i686_win7_windows_msvc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub fn target() -> Target {
2525
llvm_target: "i686-pc-windows-msvc".into(),
2626
pointer_width: 32,
2727
data_layout: "e-m:x-p:32:32-p270:32:32-p271:32:32-p272:64:64-\
28-
i64:64-f80:128-n8:16:32-a:0:32-S32"
28+
i64:64-i128:128-f80:128-n8:16:32-a:0:32-S32"
2929
.into(),
3030
arch: "x86".into(),
3131
options: base,

compiler/rustc_target/src/spec/targets/x86_64_unknown_linux_gnux32.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub fn target() -> Target {
1616
llvm_target: "x86_64-unknown-linux-gnux32".into(),
1717
pointer_width: 32,
1818
data_layout: "e-m:e-p:32:32-p270:32:32-p271:32:32-p272:64:64-\
19-
i64:64-f80:128-n8:16:32:64-S128"
19+
i64:64-i128:128-f80:128-n8:16:32:64-S128"
2020
.into(),
2121
arch: "x86_64".into(),
2222
options: base,

compiler/rustc_target/src/spec/targets/x86_64_win7_windows_msvc.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ pub fn target() -> Target {
1010
Target {
1111
llvm_target: "x86_64-win7-windows-msvc".into(),
1212
pointer_width: 64,
13-
data_layout: "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
14-
.into(),
13+
data_layout:
14+
"e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128".into(),
1515
arch: "x86_64".into(),
1616
options: base,
1717
}

0 commit comments

Comments
 (0)