@@ -987,6 +987,7 @@ pub const unsafe fn assume(b: bool) {
987
987
#[ unstable( feature = "core_intrinsics" , issue = "none" ) ]
988
988
#[ rustc_intrinsic]
989
989
#[ rustc_nounwind]
990
+ #[ cfg_attr( not( bootstrap) , miri:: intrinsic_fallback_checks_ub) ]
990
991
pub const fn likely ( b : bool ) -> bool {
991
992
b
992
993
}
@@ -1006,6 +1007,7 @@ pub const fn likely(b: bool) -> bool {
1006
1007
#[ unstable( feature = "core_intrinsics" , issue = "none" ) ]
1007
1008
#[ rustc_intrinsic]
1008
1009
#[ rustc_nounwind]
1010
+ #[ cfg_attr( not( bootstrap) , miri:: intrinsic_fallback_checks_ub) ]
1009
1011
pub const fn unlikely ( b : bool ) -> bool {
1010
1012
b
1011
1013
}
@@ -2469,6 +2471,7 @@ extern "rust-intrinsic" {
2469
2471
#[ rustc_nounwind]
2470
2472
#[ rustc_do_not_const_check]
2471
2473
#[ inline]
2474
+ #[ cfg_attr( not( bootstrap) , miri:: intrinsic_fallback_checks_ub) ]
2472
2475
pub const fn ptr_guaranteed_cmp < T > ( ptr : * const T , other : * const T ) -> u8 {
2473
2476
( ptr == other) as u8
2474
2477
}
@@ -2733,8 +2736,10 @@ pub const fn ub_checks() -> bool {
2733
2736
#[ unstable( feature = "core_intrinsics" , issue = "none" ) ]
2734
2737
#[ rustc_nounwind]
2735
2738
#[ rustc_intrinsic]
2739
+ #[ cfg_attr( not( bootstrap) , miri:: intrinsic_fallback_checks_ub) ]
2736
2740
pub const unsafe fn const_allocate ( _size : usize , _align : usize ) -> * mut u8 {
2737
- // const eval overrides this function, but runtime code should always just return null pointers.
2741
+ // const eval overrides this function, but runtime code for now just returns null pointers.
2742
+ // See <https://github.com/rust-lang/rust/issues/93935>.
2738
2743
crate :: ptr:: null_mut ( )
2739
2744
}
2740
2745
@@ -2752,7 +2757,10 @@ pub const unsafe fn const_allocate(_size: usize, _align: usize) -> *mut u8 {
2752
2757
#[ unstable( feature = "core_intrinsics" , issue = "none" ) ]
2753
2758
#[ rustc_nounwind]
2754
2759
#[ rustc_intrinsic]
2755
- pub const unsafe fn const_deallocate ( _ptr : * mut u8 , _size : usize , _align : usize ) { }
2760
+ #[ cfg_attr( not( bootstrap) , miri:: intrinsic_fallback_checks_ub) ]
2761
+ pub const unsafe fn const_deallocate ( _ptr : * mut u8 , _size : usize , _align : usize ) {
2762
+ // Runtime NOP
2763
+ }
2756
2764
2757
2765
/// `ptr` must point to a vtable.
2758
2766
/// The intrinsic will return the size stored in that vtable.
0 commit comments