aboutsummaryrefslogtreecommitdiff
path: root/lib/std/sort
diff options
context:
space:
mode:
Diffstat (limited to 'lib/std/sort')
-rw-r--r--lib/std/sort/pdq.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/sort/pdq.zig b/lib/std/sort/pdq.zig
index 61d78797c5..55bd17ae93 100644
--- a/lib/std/sort/pdq.zig
+++ b/lib/std/sort/pdq.zig
@@ -203,7 +203,7 @@ fn partitionEqual(a: usize, b: usize, pivot: usize, context: anytype) usize {
///
/// returns `true` if the slice is sorted at the end. This function is `O(n)` worst-case.
fn partialInsertionSort(a: usize, b: usize, context: anytype) bool {
- @setCold(true);
+ @branchHint(.cold);
// maximum number of adjacent out-of-order pairs that will get shifted
const max_steps = 5;
@@ -247,7 +247,7 @@ fn partialInsertionSort(a: usize, b: usize, context: anytype) bool {
}
fn breakPatterns(a: usize, b: usize, context: anytype) void {
- @setCold(true);
+ @branchHint(.cold);
const len = b - a;
if (len < 8) return;