]>
Commit | Line | Data |
---|---|---|
b039eaaf SL |
1 | // Copyright 2015 The Rust Project Developers. See the COPYRIGHT |
2 | // file at the top-level directory of this distribution and at | |
3 | // http://rust-lang.org/COPYRIGHT. | |
4 | // | |
5 | // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | |
6 | // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | |
7 | // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | |
8 | // option. This file may not be copied, modified, or distributed | |
9 | // except according to those terms. | |
10 | ||
11 | // compile-flags: -C no-prepopulate-passes | |
12 | ||
13 | #![crate_type = "lib"] | |
54a0048b | 14 | #![feature(rustc_attrs)] |
b039eaaf SL |
15 | |
16 | // Hack to get the correct size for the length part in slices | |
17 | // CHECK: @helper([[USIZE:i[0-9]+]]) | |
18 | #[no_mangle] | |
19 | fn helper(_: usize) { | |
20 | } | |
21 | ||
22 | // CHECK-LABEL: @ref_dst | |
23 | #[no_mangle] | |
54a0048b | 24 | #[rustc_no_mir] // FIXME #27840 MIR has different codegen. |
b039eaaf SL |
25 | pub fn ref_dst(s: &[u8]) { |
26 | // We used to generate an extra alloca and memcpy to ref the dst, so check that we copy | |
27 | // directly to the alloca for "x" | |
28 | // CHECK: [[SRC:%[0-9]+]] = bitcast { i8*, [[USIZE]] }* %s to i8* | |
29 | // CHECK: [[DST:%[0-9]+]] = bitcast { i8*, [[USIZE]] }* %x to i8* | |
30 | // CHECK: call void @llvm.memcpy.{{.*}}(i8* [[DST]], i8* [[SRC]], | |
31 | let x = &*s; | |
32 | } |