Skip to content

Commit

Permalink
Work around F# ildasm/ilasm round-trip test failure (dotnet#107692)
Browse files Browse the repository at this point in the history
An F# compiler change caused significant generated IL change and
an ildasm/ilasm round-trip test failure. Adding
`<RealSig>false</RealSig>` reverts to the previous F# codegen
and fixes the problem.

Tracking: dotnet#106601
  • Loading branch information
BruceForstall authored and jtschuster committed Sep 17, 2024
1 parent 9477944 commit 6e53e36
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/tests/JIT/Directed/tailcall/mutual_recursion.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@

<!-- Test is slow enough to time out under GC stress -->
<GCStressIncompatible>true</GCStressIncompatible>

<!-- Work around test failure https://github.com/dotnet/runtime/issues/106601 -->
<RealSig>false</RealSig>
</PropertyGroup>
<PropertyGroup>
<Optimize>True</Optimize>
Expand Down

0 comments on commit 6e53e36

Please sign in to comment.