https://github.com/DavidSpickett approved this pull request.

LGTM

I saw the same problem with another test case on Windows on Arm. In that case I 
was able to lower the amount of memory read, but here it needs to be some 
amount greater than the l2 cache line size which is 512:
```
  def MemCacheLineSize: Property<"memory-cache-line-size", "UInt64">,
    DefaultUnsignedValue<512>,
    Desc<"The memory cache line size">;
```
The test reads 201 * 4 bytes = 804. Starts from -100 from the array, so a 100 
item buffer after it makes sense. There will be a few registers in each frame 
to cover the last 1 integer.

https://github.com/llvm/llvm-project/pull/151635
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to