Closed
Description
A space is missing after xor
in the following case with the PR #90161.
Expected formatting:
void test(void) {
static void (*xor)(uint8_t *, size_t, uint8_t);
xor = resolve_xor_x86();
}
Actual formatting:
void test(void) {
static void (*xor)(uint8_t *, size_t, uint8_t);
xor= resolve_xor_x86();
}