Wu Yingcong e57f0e928d
[libunwind] fix pc range condition check bug (#154902)
There is an off-by-one error with current condition check for PC fallen
into the range or not. There is another check within libunwind that use
the correct checks in
5050da7ba1/libunwind/src/UnwindCursor.hpp (L2757)
```
      if ((fdeInfo.pcStart <= pc) && (pc < fdeInfo.pcEnd))
```
2025-09-01 09:15:52 +08:00
..