diff options
| author | Matthew Dempsky <mdempsky@google.com> | 2022-12-01 16:43:05 -0800 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2023-01-26 00:28:48 +0000 |
| commit | 532e34dd383549cdb415bc3e09b70d23f280524e (patch) | |
| tree | cd58f7449f253f7de8c3de70e7282fe0069a81ea /src/cmd/compile/internal/base | |
| parent | 6d4101ea68477bf1d762f7466523de0b95bec0ca (diff) | |
| download | go-532e34dd383549cdb415bc3e09b70d23f280524e.tar.xz | |
cmd/compile: remove -d=typecheckinl flag
This flag forced the compiler to eagerly type check all available
inline function bodies, which presumably was useful in the early days
of implementing inlining support. However, it shouldn't have any
significance with the unified frontend, since the same code paths are
used for constructing normal function bodies as for inlining.
Updates #57410.
Change-Id: I6842cf86bcd0fbf22ac336f2fc0b7b8fe14bccca
Reviewed-on: https://go-review.googlesource.com/c/go/+/458617
Reviewed-by: Keith Randall <khr@golang.org>
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
Reviewed-by: Keith Randall <khr@google.com>
Auto-Submit: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src/cmd/compile/internal/base')
| -rw-r--r-- | src/cmd/compile/internal/base/debug.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cmd/compile/internal/base/debug.go b/src/cmd/compile/internal/base/debug.go index b1dc9bc211..f9debd5506 100644 --- a/src/cmd/compile/internal/base/debug.go +++ b/src/cmd/compile/internal/base/debug.go @@ -46,7 +46,6 @@ type DebugFlags struct { SoftFloat int `help:"force compiler to emit soft-float code" concurrent:"ok"` SyncFrames int `help:"how many writer stack frames to include at sync points in unified export data"` TypeAssert int `help:"print information about type assertion inlining"` - TypecheckInl int `help:"eager typechecking of inline function bodies" concurrent:"ok"` WB int `help:"print information about write barriers"` ABIWrap int `help:"print information about ABI wrapper generation"` MayMoreStack string `help:"call named function before all stack growth checks" concurrent:"ok"` |
