You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The test fails in -DLLVM_ENABLE_EXPENSIVE_CHECKS=on -DLLVM_ENABLE_ASSERTIONS=on builds, both Debug and Release.
At llvm/lib/Transforms/IPO/SampleProfile.cpp:1420, the initialized NewCandidate may have a nullCalleeSamples, leading to assert(LCS && RCS && "Expect non-null FunctionSamples"); failure in (anonymous namespace)::CandidateComparer::operator()
Summary:
Fix#97108. In inline replay
mode, `CalleeSamples` may be null and the order doesn't matter.
Test Plan:
Reviewers:
Subscribers:
Tasks:
Tags:
Differential Revision: https://phabricator.intern.facebook.com/D60250889
The test fails in
-DLLVM_ENABLE_EXPENSIVE_CHECKS=on -DLLVM_ENABLE_ASSERTIONS=on
builds, both Debug and Release.At
llvm/lib/Transforms/IPO/SampleProfile.cpp:1420
, the initializedNewCandidate
may have anull
CalleeSamples
, leading toassert(LCS && RCS && "Expect non-null FunctionSamples");
failure in(anonymous namespace)::CandidateComparer::operator()
@WenleiHe
The text was updated successfully, but these errors were encountered: