Skip to content

Commit 6239614

Browse files
committed
Merge pull request #473 from dsyme/fix-stackoverflow
likely fix for stack overflow
2 parents a0cb744 + 8680701 commit 6239614

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fsharp/CompileOps.fs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4260,7 +4260,7 @@ type TcImports(tcConfigP:TcConfigProvider, initialResolutions:TcAssemblyResoluti
42604260

42614261
if tcImports.IsAlreadyRegistered ilShortAssemName then
42624262
let dllinfo = tcImports.FindDllInfo(m,ilShortAssemName)
4263-
let phase2() = [tcImports.FindCcuInfo(m,ilShortAssemName,lookupOnly=false)]
4263+
let phase2() = [tcImports.FindCcuInfo(m,ilShortAssemName,lookupOnly=true)]
42644264
dllinfo,phase2
42654265
else
42664266
let dllinfo = {RawMetadata=assemblyData

0 commit comments

Comments
 (0)