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
I think swiftlang/llvm-project@4a51a10 is the root cause. After this patch, CoroSplit pass leaves musttail call in the transforming function. The pass also runs IR verifier for the transforming function, and the left musttail call triggers verifier assertion.
The root problem here is that CoroSplit creates a musttail even though the target doesn't support it, I think. I'm writing a patch to fix it.
The text was updated successfully, but these errors were encountered:
Our community CI started failing from 2024/02/09 https://ci-external.swift.org/job/oss-swift-RA-linux-ubuntu-20.04-webassembly/1938/
I think swiftlang/llvm-project@4a51a10 is the root cause. After this patch, CoroSplit pass leaves musttail call in the transforming function. The pass also runs IR verifier for the transforming function, and the left musttail call triggers verifier assertion.
The root problem here is that CoroSplit creates a musttail even though the target doesn't support it, I think. I'm writing a patch to fix it.
The text was updated successfully, but these errors were encountered: