[llvm] Fix the inaccurate profile data check (PR #189331)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 30 00:35:17 PDT 2026
WangJee wrote:
The error is caused by the fact that when acquiring the profile data, the instruction at offset is PseudoCALL, but when performing profile verification, PseudoCALL is converted to AUIPC and JALR instructions, and the offset obtained is JALR; therefore, the profile data is considered invalid.
solve the issue https://github.com/llvm/llvm-project/issues/136276
https://github.com/llvm/llvm-project/pull/189331
More information about the llvm-commits
mailing list