diff options
| author | Jubilee Young <workingjubilee@gmail.com> | 2021-02-21 16:23:19 -0800 |
|---|---|---|
| committer | Jubilee Young <workingjubilee@gmail.com> | 2021-02-21 17:32:23 -0800 |
| commit | a2302da5b26fd5456c676a57c702c260cd977f95 (patch) | |
| tree | dbc06a9b600e367b3a82e1c9c2cbd3db6b88e34e | |
| parent | 39fb2233855ff54f3c0479459328cecf1b6185f2 (diff) | |
| download | rust-a2302da5b26fd5456c676a57c702c260cd977f95.tar.gz rust-a2302da5b26fd5456c676a57c702c260cd977f95.zip | |
Move macros.rs to first.rs
This awkwardly has to go first right now, and we don't want more macros to go into this ambiguously named mod, so let's rename it to be more literal.
| -rw-r--r-- | crates/core_simd/src/first.rs (renamed from crates/core_simd/src/macros.rs) | 0 | ||||
| -rw-r--r-- | crates/core_simd/src/lib.rs | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/crates/core_simd/src/macros.rs b/crates/core_simd/src/first.rs index b18fe5213a3..b18fe5213a3 100644 --- a/crates/core_simd/src/macros.rs +++ b/crates/core_simd/src/first.rs diff --git a/crates/core_simd/src/lib.rs b/crates/core_simd/src/lib.rs index 5ed142197f8..489996ae15e 100644 --- a/crates/core_simd/src/lib.rs +++ b/crates/core_simd/src/lib.rs @@ -5,7 +5,7 @@ //! Portable SIMD module. #[macro_use] -mod macros; +mod first; #[macro_use] mod permute; #[macro_use] |
