David Spickett 3eaaf7c4d0 [lldb][AArch64] Fix crash loading core files on 32 bit systems
https://github.com/llvm/llvm-project/pull/109934 added FPMR which
uses a bit in hwcaps greater than 31. So it marked the 1 with UL
which is fine on 64 bit systems but for 32 bit UL is 4 bytes.

Use ULL so we aren't invoking undefined behaviour.
2024-09-26 12:06:23 +00:00
..