Uh oh!
There was an error while loading. Please reload this page.
Feature gate #[simd] - #11738
Conversation
There was a problem hiding this comment.
Have you run this test past make check yet? I think that the feature gating happens at a much earlier phase than the stability lint checking levels. You may just need to split this into two tests.
alexcrichton
commented
Jan 23, 2014
This looks great, thanks! |
brson
commented
Jan 23, 2014
Will this actually prevent people from using simd? Doesn't this just make |
thestinger
commented
Jan 23, 2014
@brson: we could mark those as |
huonw
commented
Jan 23, 2014
They are marked experimental by this PR. |
brson
commented
Jan 23, 2014
Sounds good. |
huonw
commented
Jan 23, 2014
Unfortunately it looks like we don't handle cross-crate tuple structs correctly, so this currently doesn't stop people using |
Removed the `from_expansion` guard clause for cast lints, so that these warnings can be generated for internal macros.
Allow `cast` lints in macros closes: rust-lang#11738 Removed the `from_expansion` guard clause for cast lints, so that these warnings can be generated for internal macros. changelog: allow `cast` lints in macros
Fixes#11721