CVSROOT:        /cvs
Module name:    src
Changes by:     [email protected]  2026/05/07 03:28:48

Modified files:
        gnu/llvm/libcxx/include: deque 
        gnu/usr.bin/clang/llvm-tblgen: Makefile 

Log message:
lower std::deque blocksize if _LIBCPP_USE_LOWER_DEQUE_BLOCK_SIZE is defined

defining _LIBCPP_USE_LOWER_DEQUE_BLOCK_SIZE will make std::deque behave
more in line with what libstdc++ is doing by using 512 byte blocks instead
of 4096 to waste less memory

this can be used by llvm-tblgen to reduce the memory usage of some
operations which completely blow up with llvm22, so let's prepare now

https://github.com/llvm/llvm-project/issues/31782
https://chromium.googlesource.com/android_ndk/+/eecd8c2d681b019efca486f92fdda9a93f52328f%5E%21/#F0

ok deraadt@

Reply via email to