diff --git a/libcxx/utils/libcxx/test/params.py b/libcxx/utils/libcxx/test/params.py index 58ace0ba96e35..fc34009d0a551 100644 --- a/libcxx/utils/libcxx/test/params.py +++ b/libcxx/utils/libcxx/test/params.py @@ -83,12 +83,6 @@ def getStdFlag(cfg, std): if hasCompileFlag(cfg, "-std=" + std): return "-std=" + std - # TODO(LLVM-19) Remove the fallbacks needed for Clang 16. - fallbacks = { - "c++23": "c++2b", - } - if std in fallbacks and hasCompileFlag(cfg, "-std=" + fallbacks[std]): - return "-std=" + fallbacks[std] return None