This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
compiler/rustc_target/src/spec/targets Expand file tree Collapse file tree 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 {
66 base. endian = Endian :: Big ;
77 // z10 is the oldest CPU supported by LLVM
88 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.
1211 base. features = "-vector" . into ( ) ;
1312 base. max_atomic_width = Some ( 128 ) ;
1413 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 {
66 base. endian = Endian :: Big ;
77 // z10 is the oldest CPU supported by LLVM
88 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.
1211 base. features = "-vector" . into ( ) ;
1312 base. max_atomic_width = Some ( 128 ) ;
1413 base. min_global_align = Some ( 16 ) ;
You can’t perform that action at this time.
0 commit comments