diff options
| author | bors <bors@rust-lang.org> | 2018-01-31 20:51:02 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2018-01-31 20:51:02 +0000 |
| commit | 8ccab7eed5f4fc93500fbf242e575073ca70d7cb (patch) | |
| tree | f0bd6d1dd0033e29407991b9bbe13c7c7a764abf /src/test/codegen | |
| parent | 560a2f4faf4828ba5f48fe2bd7709265c2f5354d (diff) | |
| parent | af95302d3cb2f5cd59eb38b88eab6a054d965e9f (diff) | |
| download | rust-8ccab7eed5f4fc93500fbf242e575073ca70d7cb.tar.gz rust-8ccab7eed5f4fc93500fbf242e575073ca70d7cb.zip | |
Auto merge of #47900 - kennytm:rollup, r=kennytm
Rollup of 16 pull requests - Successful merges: #47838, #47840, #47844, #47874, #47875, #47876, #47884, #47886, #47889, #47890, #47891, #47795, #47677, #47893, #47895, #47552 - Failed merges:
Diffstat (limited to 'src/test/codegen')
| -rw-r--r-- | src/test/codegen/function-arguments.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/codegen/function-arguments.rs b/src/test/codegen/function-arguments.rs index f8945a6ee8d..0e98d3f9050 100644 --- a/src/test/codegen/function-arguments.rs +++ b/src/test/codegen/function-arguments.rs @@ -122,13 +122,13 @@ pub fn unsafe_slice(_: &[UnsafeInner]) { pub fn str(_: &[u8]) { } -// CHECK: @trait_borrow(%"core::ops::drop::Drop"* nonnull %arg0.0, {}* noalias nonnull readonly %arg0.1) +// CHECK: @trait_borrow({}* nonnull %arg0.0, {}* noalias nonnull readonly %arg0.1) // FIXME #25759 This should also have `nocapture` #[no_mangle] pub fn trait_borrow(_: &Drop) { } -// CHECK: @trait_box(%"core::ops::drop::Drop"* noalias nonnull, {}* noalias nonnull readonly) +// CHECK: @trait_box({}* noalias nonnull, {}* noalias nonnull readonly) #[no_mangle] pub fn trait_box(_: Box<Drop>) { } |
