File tree 2 files changed +4
-6
lines changed
compiler/rustc_target/src/spec/targets
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,8 @@ pub(crate) fn target() -> Target {
6
6
base. endian = Endian :: Big ;
7
7
// z10 is the oldest CPU supported by LLVM
8
8
base. cpu = "z10" . into ( ) ;
9
- // FIXME: The ABI implementation in cabi_s390x.rs is for now hard-coded to assume the no-vector
10
- // ABI. Pass the -vector feature string to LLVM to respect this assumption. On LLVM < 16, we
11
- // also strip v128 from the data_layout below to match the older LLVM's expectation.
9
+ // FIXME: The ABI implementation in abi/call/s390x.rs is for now hard-coded to assume the no-vector
10
+ // ABI. Pass the -vector feature string to LLVM to respect this assumption.
12
11
base. features = "-vector" . into ( ) ;
13
12
base. max_atomic_width = Some ( 128 ) ;
14
13
base. min_global_align = Some ( 16 ) ;
Original file line number Diff line number Diff line change @@ -6,9 +6,8 @@ pub(crate) fn target() -> Target {
6
6
base. endian = Endian :: Big ;
7
7
// z10 is the oldest CPU supported by LLVM
8
8
base. cpu = "z10" . into ( ) ;
9
- // FIXME: The ABI implementation in cabi_s390x.rs is for now hard-coded to assume the no-vector
10
- // ABI. Pass the -vector feature string to LLVM to respect this assumption. On LLVM < 16, we
11
- // also strip v128 from the data_layout below to match the older LLVM's expectation.
9
+ // FIXME: The ABI implementation in abi/call/s390x.rs is for now hard-coded to assume the no-vector
10
+ // ABI. Pass the -vector feature string to LLVM to respect this assumption.
12
11
base. features = "-vector" . into ( ) ;
13
12
base. max_atomic_width = Some ( 128 ) ;
14
13
base. min_global_align = Some ( 16 ) ;
You can’t perform that action at this time.
0 commit comments