[llvm] [X86][NF] Switch the order of Inst and &Target.getInstruction(NewRec) (PR #130739)

via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 11 02:28:18 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 8885b5c0626065274cb8f8a634d45779a0f6ff2b b79f0b423ca68a6a2fe51363bb0b964964f40114 --extensions inc,cpp -- llvm/test/TableGen/x86-instr-mapping.inc llvm/utils/TableGen/X86InstrMappingEmitter.cpp
``````````

</details>

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

``````````diff
diff --git a/llvm/utils/TableGen/X86InstrMappingEmitter.cpp b/llvm/utils/TableGen/X86InstrMappingEmitter.cpp
index c82a6a9b22..0ba0a0dd50 100644
--- a/llvm/utils/TableGen/X86InstrMappingEmitter.cpp
+++ b/llvm/utils/TableGen/X86InstrMappingEmitter.cpp
@@ -293,8 +293,7 @@ void X86InstrMappingEmitter::emitNFTransformTable(
       report_fatal_error("EFLAGS should not be clobbered by " +
                          NewRec->getName());
     if (!ClobberEFLAGS(Rec))
-      report_fatal_error("EFLAGS should be clobbered by " +
-                         Rec->getName());
+      report_fatal_error("EFLAGS should be clobbered by " + Rec->getName());
 #endif
     Table.emplace_back(Inst, &Target.getInstruction(NewRec));
   }

``````````

</details>


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


More information about the llvm-commits mailing list