[llvm] [AArch64][SME] Remove unused ZA lazy-save (PR #81648)

Sander de Smalen via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 14 01:19:20 PST 2024


================
@@ -35,6 +35,11 @@ struct AArch64FunctionInfo;
 class AArch64Subtarget;
 class MachineInstr;
 
+struct TPIDR2Object {
+  uint64_t Addr = 0;
----------------
sdesmalen-arm wrote:

```suggestion
  unsigned FI = 0;
```
At this point it is a frame-index, not an address (which couldn't be represented in a compile-time `uint64_t` anyway), so better to just name it as such. Also make it `unsigned` because that's the type used for frame indices.

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


More information about the llvm-commits mailing list