[all-commits] [llvm/llvm-project] 75ab43: [mlir][emitc][NFC] Eliminate the extra newline pri...

Andrey Timonin via All-commits all-commits at lists.llvm.org
Wed Mar 19 03:03:17 PDT 2025


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: 75ab43b70eef125dbdf1586143fad88a2a61170e
      https://github.com/llvm/llvm-project/commit/75ab43b70eef125dbdf1586143fad88a2a61170e
  Author: Andrey Timonin <timonina1909 at gmail.com>
  Date:   2025-03-19 (Wed, 19 Mar 2025)

  Changed paths:
    M mlir/lib/Target/Cpp/TranslateToCpp.cpp

  Log Message:
  -----------
  [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;
}
```



To unsubscribe from these emails, change your notification settings at https://github.com/llvm/llvm-project/settings/notifications


More information about the All-commits mailing list