Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
fb23dd3c6b120f0d2e55e5f2c69a464df7b35fdf
/
.
/
tests
/
codegen-llvm
/
fatptr.rs
blob: 041807202b8414d04065f688049fc67360dad35f [
file
]
//@ compile-flags: -C no-prepopulate-passes
#![
crate_type
=
"lib"
]
pub
trait
T
{}
// CHECK-LABEL: @copy_fat_ptr
#[
no_mangle
]
pub
fn
copy_fat_ptr
(
x
:
&
T
)
{
// CHECK-NOT: extractvalue
let
x2
=
x
;
}