Issue |
92688
|
Summary |
[clang-format] A space is missing after a word token
|
Labels |
clang-format,
invalid-code-generation
|
Assignees |
|
Reporter |
heiher
|
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();
}
```
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs