[clang] [llvm] [HLSL] Disallow named struct types as parameters in target extension types (PR #115971)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Nov 21 17:13:04 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 d2db9bd708f1f1d4368e0b2d3870dd8c307c9895 c3e6120c0d3efb7b5aeae864e164976a1d869b6f --extensions cpp -- llvm/lib/IR/AsmWriter.cpp llvm/lib/IR/Type.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/IR/AsmWriter.cpp b/llvm/lib/IR/AsmWriter.cpp
index e1c8fa8349..3c1cb76622 100644
--- a/llvm/lib/IR/AsmWriter.cpp
+++ b/llvm/lib/IR/AsmWriter.cpp
@@ -649,7 +649,7 @@ void TypePrinting::print(Type *Ty, raw_ostream &OS) {
OS << "target(\"";
printEscapedString(Ty->getTargetExtName(), OS);
OS << "\"";
- for (Type *Inner : TETy->type_params())
+ for (Type *Inner : TETy->type_params())
OS << ", " << *Inner;
for (unsigned IntParam : TETy->int_params())
OS << ", " << IntParam;
``````````
</details>
https://github.com/llvm/llvm-project/pull/115971
More information about the cfe-commits
mailing list