[llvm] [SystemZ][z/OS] Fix incorrect codegen for ADA_ENTRY pseudo instruction (PR #101415)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 31 14:50:17 PDT 2024
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 6aa723daa9d9c54c597788d384b41dd735359316 78838a98d08d0f5c9a482e8c99acf1f1be94ec3b --extensions cpp -- llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp b/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
index 9d0fbd3097..ed400e9ece 100644
--- a/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
+++ b/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
@@ -346,9 +346,10 @@ void SystemZAsmPrinter::emitInstruction(const MachineInstr *MI) {
*OutStreamer,
MCInstBuilder(SystemZ::LLILF).addReg(TargetReg).addImm(Disp));
} else
- EmitToStreamer(
- *OutStreamer,
- MCInstBuilder(SystemZ::ALGFI).addReg(TargetReg).addReg(TargetReg).addImm(Disp));
+ EmitToStreamer(*OutStreamer, MCInstBuilder(SystemZ::ALGFI)
+ .addReg(TargetReg)
+ .addReg(TargetReg)
+ .addImm(Disp));
Disp = 0;
Op = Op0;
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/101415
More information about the llvm-commits
mailing list