Skip to content

Commit a79731a

Browse files
authored
Merge pull request #26 from dsyme/forki-i1637
fix build
2 parents 03d5b01 + f390088 commit a79731a

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/fsharp/TypeChecker.fs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1426,8 +1426,6 @@ let MakeAndPublishVal cenv env (altActualParent,inSig,declKind,vrec,(ValScheme(i
14261426
| _ -> 0x0
14271427
// MethodImplOptions.NoInlining = 0x8
14281428
let NO_INLINING = 0x8
1429-
// MethodImplOptions.AggressiveInlining = 0x0100
1430-
let AGGRESSIVE_INLINING = 0x0100
14311429
if (implflags &&& NO_INLINING) <> 0x0 then
14321430
ValInline.Never
14331431
else

src/fsharp/tast.fs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ type ValInline =
6262
| PseudoVal
6363
/// Indicates the value is inlined but the .NET IL code for the function still exists, e.g. to satisfy interfaces on objects, but that it is also always inlined
6464
| Always
65-
/// Indicates the value will be inlined be inlined by the .NET runtime
66-
| Aggressive
6765
/// Indicates the value may optionally be inlined by the optimizer
6866
| Optional
6967
/// Indicates the value must never be inlined by the optimizer

0 commit comments

Comments
 (0)