https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95166
--- Comment #2 from CVS Commits <cvs-commit at gcc dot gnu.org> --- The releases/gcc-10 branch has been updated by Iain Buclaw <ibuc...@gcc.gnu.org>: https://gcc.gnu.org/g:999c80acfdd890b789678c989c3d740969c14d20 commit r10-8150-g999c80acfdd890b789678c989c3d740969c14d20 Author: Iain Buclaw <ibuc...@gdcproject.org> Date: Sun May 17 18:49:19 2020 +0200 libphobos: Backport library fixes from mainline - core.cpuid has been fixed to not use i7 detection on AMD processors. - std.net.curl has been fixed to correctly handle HTTP/2 status lines. - std.zip has had a test fixed to not rely on unzip being installed. libphobos/ChangeLog: PR d/95166 * libdruntime/core/cpuid.d (cpuidX86): Do not use i7 detection on AMD processors. (hasCPUID): Fix deprecated asm syntax. PR d/95167 * src/std/zip.d (unittest): Skip test if unzip is not installed. PR d/95168 * src/std/net/curl.d (HTTP.onReceiveHeader): Move status line parsing to ... (HTTP.parseStatusLine): ... here. New function. Add support for parsing HTTP/2 status lines.