diff options
| author | bjorn3 <bjorn3@users.noreply.github.com> | 2019-02-23 10:41:34 +0100 |
|---|---|---|
| committer | bjorn3 <bjorn3@users.noreply.github.com> | 2019-02-23 10:41:34 +0100 |
| commit | f54a2cc2e477c2b94a8dd6f337c0fdf3262e1c72 (patch) | |
| tree | 16956c82836582e0abfabd66348e4302f8afccd1 /example/mini_core.rs | |
| parent | 14750ece1a8cc5b6b02438b7bdd07c848d584c3b (diff) | |
| download | rust-f54a2cc2e477c2b94a8dd6f337c0fdf3262e1c72.tar.gz rust-f54a2cc2e477c2b94a8dd6f337c0fdf3262e1c72.zip | |
Update cranelift and add a test for bitreverse
Fixes #168 using CraneStation/cranelift#683
Diffstat (limited to 'example/mini_core.rs')
| -rw-r--r-- | example/mini_core.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/example/mini_core.rs b/example/mini_core.rs index b7277f5ee9f..19044e1fea5 100644 --- a/example/mini_core.rs +++ b/example/mini_core.rs @@ -348,6 +348,7 @@ pub mod intrinsics { pub fn uninit<T>() -> T; pub fn ctlz_nonzero<T>(x: T) -> T; pub fn needs_drop<T>() -> bool; + pub fn bitreverse<T>(x: T) -> T; } } |
