[llvm] [TableGen] Validate the shift amount for !srl, !shl, and !sra operators. (PR #132492)

via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 21 16:41:38 PDT 2025


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 b858ba0f6597c66e5c276ca9e2564ca27e7e28e7 4277124e8acb8efed73dee9bc32a1744c807dcdf --extensions cpp -- llvm/lib/TableGen/Record.cpp
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/llvm/lib/TableGen/Record.cpp b/llvm/lib/TableGen/Record.cpp
index 655c407869..78f9f2368d 100644
--- a/llvm/lib/TableGen/Record.cpp
+++ b/llvm/lib/TableGen/Record.cpp
@@ -1562,7 +1562,9 @@ const Init *BinOpInit::Fold(const Record *CurRec) const {
       case OR:  Result = LHSv | RHSv; break;
       case XOR: Result = LHSv ^ RHSv; break;
       case SHL: Result = (uint64_t)LHSv << (uint64_t)RHSv; break;
-      case SRA: Result = LHSv >> (uint64_t)RHSv; break;
+      case SRA:
+        Result = LHSv >> (uint64_t)RHSv;
+        break;
       case SRL: Result = (uint64_t)LHSv >> (uint64_t)RHSv; break;
       }
       return IntInit::get(getRecordKeeper(), Result);

``````````

</details>


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


More information about the llvm-commits mailing list