[Mlir-commits] [mlir] [mlir][emitc][NFC] Eliminate the extra newline printout during emitc.switch emission (PR #129257)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Fri Feb 28 07:01:56 PST 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-mlir

Author: Andrey Timonin (EtoAndruwa)

<details>
<summary>Changes</summary>

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;
}
```

---
Full diff: https://github.com/llvm/llvm-project/pull/129257.diff


1 Files Affected:

- (modified) mlir/lib/Target/Cpp/TranslateToCpp.cpp (+1-1) 


``````````diff
diff --git a/mlir/lib/Target/Cpp/TranslateToCpp.cpp b/mlir/lib/Target/Cpp/TranslateToCpp.cpp
index b00820ffc542b..81016ed2e9a8d 100644
--- a/mlir/lib/Target/Cpp/TranslateToCpp.cpp
+++ b/mlir/lib/Target/Cpp/TranslateToCpp.cpp
@@ -484,7 +484,7 @@ static LogicalResult printOperation(CppEmitter &emitter,
                                     emitc::SwitchOp switchOp) {
   raw_indented_ostream &os = emitter.ostream();
 
-  os << "\nswitch (";
+  os << "switch (";
   if (failed(emitter.emitOperand(switchOp.getArg())))
     return failure();
   os << ") {";

``````````

</details>


https://github.com/llvm/llvm-project/pull/129257


More information about the Mlir-commits mailing list