In https://github.com/llvm/llvm-project/commit/d768bf994f508d7eaf9541a568be3d71096febf5 a warning to help transitioning was added to llvm/Support/Host.h but it includes extra parentheses which make GCC unhappy (clang seems to accept them fine)
llvm/include/llvm/Support/Host.h:15:20: error: invalid "#pragma GCC warning" directive 15 | #pragma GCC warning( \ | ^
This change removes the parentheses around the string literal.