Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not use SIMD instructions on i686 #31110

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/librustc_back/target/i686_linux_android.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use target::Target;

pub fn target() -> Target {
let mut base = super::android_base::opts();
base.cpu = "pentium4".to_string();
base.cpu = "i686".to_string();

Target {
llvm_target: "i686-linux-android".to_string(),
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_back/target/i686_pc_windows_gnu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use target::Target;

pub fn target() -> Target {
let mut base = super::windows_base::opts();
base.cpu = "pentium4".to_string();
base.cpu = "i686".to_string();

// Mark all dynamic libraries and executables as compatible with the larger 4GiB address
// space available to x86 Windows binaries on x86_64.
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_back/target/i686_pc_windows_msvc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use target::Target;

pub fn target() -> Target {
let mut base = super::windows_msvc_base::opts();
base.cpu = "pentium4".to_string();
base.cpu = "i686".to_string();

Target {
llvm_target: "i686-pc-windows-msvc".to_string(),
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_back/target/i686_unknown_dragonfly.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use target::Target;

pub fn target() -> Target {
let mut base = super::dragonfly_base::opts();
base.cpu = "pentium4".to_string();
base.cpu = "i686".to_string();
base.pre_link_args.push("-m32".to_string());

Target {
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_back/target/i686_unknown_freebsd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use target::Target;

pub fn target() -> Target {
let mut base = super::freebsd_base::opts();
base.cpu = "pentium4".to_string();
base.cpu = "i686".to_string();
base.pre_link_args.push("-m32".to_string());

Target {
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_back/target/i686_unknown_linux_gnu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use target::Target;

pub fn target() -> Target {
let mut base = super::linux_base::opts();
base.cpu = "pentium4".to_string();
base.cpu = "i686".to_string();
base.pre_link_args.push("-m32".to_string());

Target {
Expand Down