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 following code hits an assert when CFGConversion pass is run:
subroutinesub(n, c, a, b)
implicit noneinteger:: n
real:: a(n), b(n), c(n)
intent(in) :: a, b
intent(out) :: c
integer:: i
do i =1, n
c(i) = a(i) + b(i)
end doendsubroutine sub
Command: bbc f1.f90 -debug --pass-pipeline --cfg-conversion
Log
%29 = fir.do_loop bbc: /home/rpenacob/llvm-mono/llvm/include/llvm/ADT/ilist_iterator.h:138: llvm::ilist_iterator::reference llvm::ilist_iterator<llvm::ilist_detail::node_options<mlir::Block, true, false, void>, false, false>::operator*() const [OptionsT = llvm::ilist_detail::node_options<mlir::Block, true, false, void>, IsReverse = false, IsConst = false]: Assertion `!NodePtr->isKnownSentinel()' failed.
PLEASE submit a bug report to mailto:[email protected] and include the crash backtrace.
Stack dump:
0. Program arguments: ./bin/bbc f1.f90 -debug --pass-pipeline --cfg-conversion
The text was updated successfully, but these errors were encountered:
The following code hits an assert when CFGConversion pass is run:
Command:
bbc f1.f90 -debug --pass-pipeline --cfg-conversion
Log
The text was updated successfully, but these errors were encountered: