diff options
| author | Aaron Hill <aa1ronham@gmail.com> | 2019-10-29 17:31:54 -0400 |
|---|---|---|
| committer | Aaron Hill <aa1ronham@gmail.com> | 2019-11-11 15:14:34 -0500 |
| commit | fe88fc03c50be57e1dc12cf308c45dc9c8d6473a (patch) | |
| tree | eff576f45f27f9afa4c17e7736bc83128e4a7a42 /src/libcore | |
| parent | caf3cc1fc88430caa61a8f1ae0262c3489a6481a (diff) | |
| download | rust-fe88fc03c50be57e1dc12cf308c45dc9c8d6473a.tar.gz rust-fe88fc03c50be57e1dc12cf308c45dc9c8d6473a.zip | |
Fix up intrinsic implementation
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/intrinsics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/intrinsics.rs b/src/libcore/intrinsics.rs index f4a1ff0dd00..0cfe5595af5 100644 --- a/src/libcore/intrinsics.rs +++ b/src/libcore/intrinsics.rs @@ -1352,7 +1352,7 @@ extern "rust-intrinsic" { /// Internal hook used by Miri to implement unwinding. /// Perma-unstable: do not use #[cfg(not(bootstrap))] - pub fn miri_start_panic(data: *mut (dyn crate::any::Any + Send)) -> !; + pub fn miri_start_panic(data: u128) -> !; } // Some functions are defined here because they accidentally got made |
