[libcxx-commits] [libcxx] [libc++][NFC] Move the lower_bound/upper_bound benchmark to the sorting directory (PR #207215)

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Thu Jul 2 09:03:10 PDT 2026


https://github.com/ldionne created https://github.com/llvm/llvm-project/pull/207215

These algorithms are not under [nonmodifying], they are under [sorting] in the Standard.

>From df40598bdff32f5436a43b38077d463110e3e61b Mon Sep 17 00:00:00 2001
From: Louis Dionne <ldionne.2 at gmail.com>
Date: Thu, 2 Jul 2026 10:41:25 -0400
Subject: [PATCH] [libc++][NFC] Move the lower_bound/upper_bound benchmark to
 the sorting directory

These algorithms are not under [nonmodifying], they are under [sorting]
in the Standard.
---
 .../{nonmodifying => sorting}/lower_upper_bound.bench.cpp         | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename libcxx/test/benchmarks/algorithms/{nonmodifying => sorting}/lower_upper_bound.bench.cpp (100%)

diff --git a/libcxx/test/benchmarks/algorithms/nonmodifying/lower_upper_bound.bench.cpp b/libcxx/test/benchmarks/algorithms/sorting/lower_upper_bound.bench.cpp
similarity index 100%
rename from libcxx/test/benchmarks/algorithms/nonmodifying/lower_upper_bound.bench.cpp
rename to libcxx/test/benchmarks/algorithms/sorting/lower_upper_bound.bench.cpp



More information about the libcxx-commits mailing list