A space is missing after `xor` in the following case with the PR https://github.com/llvm/llvm-project/pull/90161. Expected formatting: ```c void test(void) { static void (*xor)(uint8_t *, size_t, uint8_t); xor = resolve_xor_x86(); } ``` Actual formatting: ```c void test(void) { static void (*xor)(uint8_t *, size_t, uint8_t); xor= resolve_xor_x86(); } ```