[clang] [Clang][CIR][AArch64] NFC: Cleanups in AArch64 builtins lowering (PR #184404)

Andy Kaylor via cfe-commits cfe-commits at lists.llvm.org
Wed Mar 4 11:47:36 PST 2026


================
@@ -40,18 +40,25 @@ static mlir::Value genVscaleTimesFactor(mlir::Location loc,
                                builder.getUInt64(scalingFactor, loc));
 }
 
+//===----------------------------------------------------------------------===//
+//  Intrinsics maps
+//
+//  Maps that help automate code-generation.
+//
+// TODO(cir): Share this code with ARM.cpp
+//===----------------------------------------------------------------------===//
 static bool aarch64SVEIntrinsicsProvenSorted = false;
 
 namespace {
-struct AArch64BuiltinInfo {
+struct armVectorIntrinsicInfo {
----------------
andykaylor wrote:

```suggestion
struct ARMVectorIntrinsicInfo {
```
As a type name, this should start with a capital letter.

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


More information about the cfe-commits mailing list