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 reason of the assert is that debug intrinsic llvm.dbg.value is
located in a block, which does not dominate its argument. Something
like this:
B1:
call llvm.dbg.value(metadata var, ...)
....
B2:
definition of var
and B1 doesn't dominate B2. This happens in Codesinking pass. It
moved the definition of var closer to it's usage but left debug
intrinsic intact as debug intrinsics are not included in a list of
users of var definition. There is a special code to handle debug
intrinsics but unfortunately this code was not triggered in this
specific case. Check for such intrinsics in a block and trigger
the code to process the intrinsics.
Change-Id: I410d41ffdfd79f1f4803e5f922943bdad13f22ad
0 commit comments