Skip to content

Commit

Permalink
rustc: Remove platform intrinsics crate
Browse files Browse the repository at this point in the history
This was originally attempted in #57048 but it was realized that we
could fully remove the crate via the `"unadjusted"` ABI on intrinsics.
This means that all intrinsics in stdsimd are implemented directly
against LLVM rather than using the abstraction layer provided here. That
ends up meaning that this crate is no longer used at all.

This crate developed long ago to implement the SIMD intrinsics, but we
didn't end up using it in the long run. In that case let's remove it!
  • Loading branch information
alexcrichton committed Jan 14, 2019
1 parent d106808 commit 7616daa
Show file tree
Hide file tree
Showing 57 changed files with 4 additions and 15,991 deletions.
5 changes: 0 additions & 5 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2564,10 +2564,6 @@ dependencies = [
"syntax_pos 0.0.0",
]

[[package]]
name = "rustc_platform_intrinsics"
version = "0.0.0"

[[package]]
name = "rustc_plugin"
version = "0.0.0"
Expand Down Expand Up @@ -2678,7 +2674,6 @@ dependencies = [
"rustc 0.0.0",
"rustc_data_structures 0.0.0",
"rustc_errors 0.0.0",
"rustc_platform_intrinsics 0.0.0",
"rustc_target 0.0.0",
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
"syntax 0.0.0",
Expand Down
Loading

1 comment on commit 7616daa

@hsivonen
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.