[llvm] [MC][Mips] Fix wrong assumption about `Immediate` operand. (PR #119056)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 6 22:59:14 PST 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 a9eb8f0e3dbaf16b6bd83eecb960b6ea8ecaa8c3 d0b9d784e2e1257eeab6c8a52f4845a10ae151f6 --extensions cpp -- llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp b/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
index 4b38ce70c3..eaf4de9d37 100644
--- a/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
+++ b/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
@@ -143,7 +143,7 @@ public:
switch (Info->get(Inst.getOpcode()).operands()[NumOps - 1].OperandType) {
case MCOI::OPERAND_UNKNOWN:
case MCOI::OPERAND_IMMEDIATE: {
- const MCOperand& Op = Inst.getOperand(NumOps - 1);
+ const MCOperand &Op = Inst.getOperand(NumOps - 1);
if (!Op.isImm())
return false;
// j, jal, jalx, jals
``````````
</details>
https://github.com/llvm/llvm-project/pull/119056
More information about the llvm-commits
mailing list