diff options
| author | bors <bors@rust-lang.org> | 2020-02-19 19:10:58 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2020-02-19 19:10:58 +0000 |
| commit | 7760cd0fbbbf2c59a625e075a5bdfa88b8e30f8a (patch) | |
| tree | 4f54c12a071f99e56f766983da474f3c904da61a /src/test/incremental | |
| parent | 7d6b8c414e84e1f4f2f40236e83125ba8e034b98 (diff) | |
| parent | a97f354767844680311da5252fe0c81ecfb9ed45 (diff) | |
| download | rust-7760cd0fbbbf2c59a625e075a5bdfa88b8e30f8a.tar.gz rust-7760cd0fbbbf2c59a625e075a5bdfa88b8e30f8a.zip | |
Auto merge of #69293 - Dylan-DPC:rollup-imcbvgo, r=Dylan-DPC
Rollup of 5 pull requests
Successful merges:
- #68863 (ci: switch macOS builders to 10.15)
- #69142 (Add shared script for linkchecking books.)
- #69248 (Don't eliminate frame pointers on thumb targets)
- #69280 (Remove special case for `simd_shuffle` arg promotion)
- #69284 (Reword OpenOptions::{create, create_new} doc.)
Failed merges:
r? @ghost
Diffstat (limited to 'src/test/incremental')
| -rw-r--r-- | src/test/incremental/issue-61530.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/incremental/issue-61530.rs b/src/test/incremental/issue-61530.rs index 06b2957ac62..c9c600efed8 100644 --- a/src/test/incremental/issue-61530.rs +++ b/src/test/incremental/issue-61530.rs @@ -1,4 +1,4 @@ -#![feature(repr_simd, platform_intrinsics)] +#![feature(repr_simd, platform_intrinsics, rustc_attrs)] // revisions:rpass1 rpass2 @@ -6,6 +6,7 @@ struct I32x2(i32, i32); extern "platform-intrinsic" { + #[rustc_args_required_const(2)] fn simd_shuffle2<T, U>(x: T, y: T, idx: [u32; 2]) -> U; } |
