File tree 2 files changed +2
-2
lines changed
compiler/rustc_target/src/spec/targets
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ pub(crate) fn target() -> Target {
10
10
// ABI. Pass the -vector feature string to LLVM to respect this assumption. On LLVM < 16, we
11
11
// also strip v128 from the data_layout below to match the older LLVM's expectation.
12
12
base. features = "-vector" . into ( ) ;
13
- base. max_atomic_width = Some ( 64 ) ;
13
+ base. max_atomic_width = Some ( 128 ) ;
14
14
base. min_global_align = Some ( 16 ) ;
15
15
base. stack_probes = StackProbeType :: Inline ;
16
16
base. supported_sanitizers =
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ pub(crate) fn target() -> Target {
10
10
// ABI. Pass the -vector feature string to LLVM to respect this assumption. On LLVM < 16, we
11
11
// also strip v128 from the data_layout below to match the older LLVM's expectation.
12
12
base. features = "-vector" . into ( ) ;
13
- base. max_atomic_width = Some ( 64 ) ;
13
+ base. max_atomic_width = Some ( 128 ) ;
14
14
base. min_global_align = Some ( 16 ) ;
15
15
base. static_position_independent_executables = true ;
16
16
base. stack_probes = StackProbeType :: Inline ;
You can’t perform that action at this time.
0 commit comments