Files
clang-p2996/mlir/lib/Target/Cpp/TranslateToCpp.cpp
Andrey Timonin 75ab43b70e [mlir][emitc][NFC] Eliminate the extra newline printout during emitc.switch emission (#129257)
Before the output was:
```c++
void emitc_switch_ptrdiff_t() {
  ptrdiff_t v1 = 1;

  switch (v1) {
  ...
  }
  return;
}
```
After:
```c++
void emitc_switch_ptrdiff_t() {
  ptrdiff_t v1 = 1;
  switch (v1) {
  ...
  }
  return;
}
```
2025-03-19 11:02:54 +01:00

59 KiB