Skip to content

Commit ed5445b

Browse files
committed
temp
1 parent 9062cbe commit ed5445b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Diff for: src/Compiler/Optimize/InnerLambdasToTopLevelFuncs.fs

+1-2
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ let FlatEnvPacks g fclassM topValS declist (reqdItemsMap: Zmap<BindingGroupShari
788788
dprintf "tlr: packEnv unpack =%s\n" (showL (listL bindingL unpack))
789789

790790
// result
791-
(fc, { ep_etps = [] //Zset.elements env.reqdTypars
791+
(fc, { ep_etps = Zset.elements env.reqdTypars
792792
ep_aenvs = aenvs
793793
ep_pack = pack
794794
ep_unpack = unpack}), carrierMaps
@@ -999,7 +999,6 @@ module Pass4_RewriteAssembly =
999999
fBind
10001000

10011001
let fHatNewBinding (shortRecBinds: Bindings) (TBind(f, b, letSeqPtOpt)) =
1002-
printfn $"fHatNewBinding: f:{f} b:{b}"
10031002
let wf = Zmap.force f penv.arityM ("fHatNewBinding - arityM", nameOfVal)
10041003
let fHat = Zmap.force f penv.fHatM ("fHatNewBinding - fHatM", nameOfVal)
10051004

Diff for: src/Compiler/TypedTree/TypedTreeBasics.fs

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ let mkTyparTy (tp:Typar) =
196196

197197
// For fresh type variables clear the StaticReq when copying because the requirement will be re-established through the
198198
// process of type inference.
199-
let copyTypar clearStaticReq (tp: Typar) =
199+
let copyTypar clearStaticReq (tp: Typar) =
200200
let optData = tp.typar_opt_data |> Option.map (fun tg -> { typar_il_name = tg.typar_il_name; typar_xmldoc = tg.typar_xmldoc; typar_constraints = tg.typar_constraints; typar_attribs = tg.typar_attribs; typar_is_contravariant = tg.typar_is_contravariant })
201201
let flags = if clearStaticReq then tp.typar_flags.WithStaticReq(TyparStaticReq.None) else tp.typar_flags
202202
Typar.New { typar_id = tp.typar_id

0 commit comments

Comments
 (0)