diff options
| author | bors <bors@rust-lang.org> | 2018-10-05 22:17:57 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2018-10-05 22:17:57 +0000 |
| commit | 17a9dc7513b9fea883dc9505f09f97c63d1d601b (patch) | |
| tree | 34be1935d6ac0448637d6c95f751dbe7a33a83e7 /src/test/codegen/function-arguments.rs | |
| parent | b801ae66425cf7c3c71052b19ef8f145b0d0513d (diff) | |
| parent | a154257c85fc109c19610b2c5fe25499e77ea9a7 (diff) | |
| download | rust-1.29.2.tar.gz rust-1.29.2.zip | |
Auto merge of #54808 - pietroalbini:stable-1.29.2, r=alexcrichton 1.29.2
1.29.2 stable point release This point release includes a backport of #54639 (a miscompilation) and the fix for #54206 (rls missing on windows-gnu). It also backports a release notes fix (#54150). The target date for the release is Thursday 11th. r? @Mark-Simulacrum cc @rust-lang/core @rust-lang/release
Diffstat (limited to 'src/test/codegen/function-arguments.rs')
| -rw-r--r-- | src/test/codegen/function-arguments.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/codegen/function-arguments.rs b/src/test/codegen/function-arguments.rs index 0bd021f8ae2..5061d9a915e 100644 --- a/src/test/codegen/function-arguments.rs +++ b/src/test/codegen/function-arguments.rs @@ -53,13 +53,13 @@ pub fn named_borrow<'r>(_: &'r i32) { pub fn unsafe_borrow(_: &UnsafeInner) { } -// CHECK: @mutable_unsafe_borrow(i16* noalias dereferenceable(2) %arg0) +// CHECK: @mutable_unsafe_borrow(i16* dereferenceable(2) %arg0) // ... unless this is a mutable borrow, those never alias #[no_mangle] pub fn mutable_unsafe_borrow(_: &mut UnsafeInner) { } -// CHECK: @mutable_borrow(i32* noalias dereferenceable(4) %arg0) +// CHECK: @mutable_borrow(i32* dereferenceable(4) %arg0) // FIXME #25759 This should also have `nocapture` #[no_mangle] pub fn mutable_borrow(_: &mut i32) { @@ -102,7 +102,7 @@ pub fn helper(_: usize) { pub fn slice(_: &[u8]) { } -// CHECK: @mutable_slice([0 x i8]* noalias nonnull %arg0.0, [[USIZE]] %arg0.1) +// CHECK: @mutable_slice([0 x i8]* nonnull %arg0.0, [[USIZE]] %arg0.1) // FIXME #25759 This should also have `nocapture` #[no_mangle] pub fn mutable_slice(_: &mut [u8]) { |
