[clang] [CIR][AArch64] Add lowering for `svlen` builtins (1/2) (PR #172346)
Andrzej WarzyĆski via cfe-commits
cfe-commits at lists.llvm.org
Tue Dec 16 09:00:12 PST 2025
================
@@ -454,11 +454,10 @@ def CIR_VectorType : CIR_Type<"Vector", "vector", [
`<` $size `x` $element_type `>`
}];
- let builders = [
- TypeBuilderWithInferredContext<(ins
- "mlir::Type":$element_type, "uint64_t":$size, CArg<"bool",
- "false">:$isScalable
- ), [{
+ let builders = [TypeBuilderWithInferredContext<
+ (ins "mlir::Type":$element_type, "uint64_t":$size,
+ CArg<"bool", "false">:$isScalable),
+ [{
----------------
banach-space wrote:
Accidental clang-format, reverted in this [commit](https://github.com/llvm/llvm-project/pull/172346/commits/e1c40d24f6b6d90bb82310e706c587df0d4e339b).
https://github.com/llvm/llvm-project/pull/172346
More information about the cfe-commits
mailing list