@@ -701,39 +701,39 @@ extern "rust-intrinsic" {
701
701
/// `std::sync::atomic` unsigned integer types via the `fetch_min` method by passing
702
702
/// [`Ordering::SeqCst`](crate::sync::atomic::Ordering::SeqCst)
703
703
/// as the `order`. For example,
704
- /// [`AtomicU32::fetch_min`](../../std/ sync/ atomic/struct. AtomicU32.html#method. fetch_min).
704
+ /// [`AtomicU32::fetch_min`](crate:: sync:: atomic:: AtomicU32:: fetch_min).
705
705
pub fn atomic_umin < T : Copy > ( dst : * mut T , src : T ) -> T ;
706
706
/// Minimum with the current value using an unsigned comparison.
707
707
///
708
708
/// The stabilized version of this intrinsic is available on the
709
709
/// `std::sync::atomic` unsigned integer types via the `fetch_min` method by passing
710
710
/// [`Ordering::Acquire`](crate::sync::atomic::Ordering::Acquire)
711
711
/// as the `order`. For example,
712
- /// [`AtomicU32::fetch_min`](../../std/ sync/ atomic/struct. AtomicU32.html#method. fetch_min).
712
+ /// [`AtomicU32::fetch_min`](crate:: sync:: atomic:: AtomicU32:: fetch_min).
713
713
pub fn atomic_umin_acq < T : Copy > ( dst : * mut T , src : T ) -> T ;
714
714
/// Minimum with the current value using an unsigned comparison.
715
715
///
716
716
/// The stabilized version of this intrinsic is available on the
717
717
/// `std::sync::atomic` unsigned integer types via the `fetch_min` method by passing
718
718
/// [`Ordering::Release`](crate::sync::atomic::Ordering::Release)
719
719
/// as the `order`. For example,
720
- /// [`AtomicU32::fetch_min`](../../std/ sync/ atomic/struct. AtomicU32.html#method. fetch_min).
720
+ /// [`AtomicU32::fetch_min`](crate:: sync:: atomic:: AtomicU32:: fetch_min).
721
721
pub fn atomic_umin_rel < T : Copy > ( dst : * mut T , src : T ) -> T ;
722
722
/// Minimum with the current value using an unsigned comparison.
723
723
///
724
724
/// The stabilized version of this intrinsic is available on the
725
725
/// `std::sync::atomic` unsigned integer types via the `fetch_min` method by passing
726
726
/// [`Ordering::AcqRel`](crate::sync::atomic::Ordering::AcqRel)
727
727
/// as the `order`. For example,
728
- /// [`AtomicU32::fetch_min`](../../std/ sync/ atomic/struct. AtomicU32.html#method. fetch_min).
728
+ /// [`AtomicU32::fetch_min`](crate:: sync:: atomic:: AtomicU32:: fetch_min).
729
729
pub fn atomic_umin_acqrel < T : Copy > ( dst : * mut T , src : T ) -> T ;
730
730
/// Minimum with the current value using an unsigned comparison.
731
731
///
732
732
/// The stabilized version of this intrinsic is available on the
733
733
/// `std::sync::atomic` unsigned integer types via the `fetch_min` method by passing
734
734
/// [`Ordering::Relaxed`](crate::sync::atomic::Ordering::Relaxed)
735
735
/// as the `order`. For example,
736
- /// [`AtomicU32::fetch_min`](../../std/ sync/ atomic/struct. AtomicU32.html#method. fetch_min).
736
+ /// [`AtomicU32::fetch_min`](crate:: sync:: atomic:: AtomicU32:: fetch_min).
737
737
pub fn atomic_umin_relaxed < T : Copy > ( dst : * mut T , src : T ) -> T ;
738
738
739
739
/// Maximum with the current value using an unsigned comparison.
@@ -742,39 +742,39 @@ extern "rust-intrinsic" {
742
742
/// `std::sync::atomic` unsigned integer types via the `fetch_max` method by passing
743
743
/// [`Ordering::SeqCst`](crate::sync::atomic::Ordering::SeqCst)
744
744
/// as the `order`. For example,
745
- /// [`AtomicU32::fetch_max`](../../std/ sync/ atomic/struct. AtomicU32.html#method. fetch_max).
745
+ /// [`AtomicU32::fetch_max`](crate:: sync:: atomic:: AtomicU32:: fetch_max).
746
746
pub fn atomic_umax < T : Copy > ( dst : * mut T , src : T ) -> T ;
747
747
/// Maximum with the current value using an unsigned comparison.
748
748
///
749
749
/// The stabilized version of this intrinsic is available on the
750
750
/// `std::sync::atomic` unsigned integer types via the `fetch_max` method by passing
751
751
/// [`Ordering::Acquire`](crate::sync::atomic::Ordering::Acquire)
752
752
/// as the `order`. For example,
753
- /// [`AtomicU32::fetch_max`](../../std/ sync/ atomic/struct. AtomicU32.html#method. fetch_max).
753
+ /// [`AtomicU32::fetch_max`](crate:: sync:: atomic:: AtomicU32:: fetch_max).
754
754
pub fn atomic_umax_acq < T : Copy > ( dst : * mut T , src : T ) -> T ;
755
755
/// Maximum with the current value using an unsigned comparison.
756
756
///
757
757
/// The stabilized version of this intrinsic is available on the
758
758
/// `std::sync::atomic` unsigned integer types via the `fetch_max` method by passing
759
759
/// [`Ordering::Release`](crate::sync::atomic::Ordering::Release)
760
760
/// as the `order`. For example,
761
- /// [`AtomicU32::fetch_max`](../../std/ sync/ atomic/struct. AtomicU32.html#method. fetch_max).
761
+ /// [`AtomicU32::fetch_max`](crate:: sync:: atomic:: AtomicU32:: fetch_max).
762
762
pub fn atomic_umax_rel < T : Copy > ( dst : * mut T , src : T ) -> T ;
763
763
/// Maximum with the current value using an unsigned comparison.
764
764
///
765
765
/// The stabilized version of this intrinsic is available on the
766
766
/// `std::sync::atomic` unsigned integer types via the `fetch_max` method by passing
767
767
/// [`Ordering::AcqRel`](crate::sync::atomic::Ordering::AcqRel)
768
768
/// as the `order`. For example,
769
- /// [`AtomicU32::fetch_max`](../../std/ sync/ atomic/struct. AtomicU32.html#method. fetch_max).
769
+ /// [`AtomicU32::fetch_max`](crate:: sync:: atomic:: AtomicU32:: fetch_max).
770
770
pub fn atomic_umax_acqrel < T : Copy > ( dst : * mut T , src : T ) -> T ;
771
771
/// Maximum with the current value using an unsigned comparison.
772
772
///
773
773
/// The stabilized version of this intrinsic is available on the
774
774
/// `std::sync::atomic` unsigned integer types via the `fetch_max` method by passing
775
775
/// [`Ordering::Relaxed`](crate::sync::atomic::Ordering::Relaxed)
776
776
/// as the `order`. For example,
777
- /// [`AtomicU32::fetch_max`](../../std/ sync/ atomic/struct. AtomicU32.html#method. fetch_max).
777
+ /// [`AtomicU32::fetch_max`](crate:: sync:: atomic:: AtomicU32:: fetch_max).
778
778
pub fn atomic_umax_relaxed < T : Copy > ( dst : * mut T , src : T ) -> T ;
779
779
780
780
/// The `prefetch` intrinsic is a hint to the code generator to insert a prefetch instruction
0 commit comments