From fe73c186eba2c849a2f2aeaca091ddb5bac3aef1 Mon Sep 17 00:00:00 2001 From: Than McIntosh Date: Thu, 29 Jun 2023 11:44:04 -0400 Subject: cmd/{go,compile}: run gofmt Ran gofmt on a couple of Go source files that needed it. Change-Id: I0e9f78831f531a728b892a63c6e0c517d92b11a8 Reviewed-on: https://go-review.googlesource.com/c/go/+/507156 Run-TryBot: Than McIntosh Reviewed-by: Austin Clements Reviewed-by: Cuong Manh Le TryBot-Result: Gopher Robot --- src/cmd/compile/internal/devirtualize/devirtualize.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/cmd/compile/internal/devirtualize/devirtualize.go') diff --git a/src/cmd/compile/internal/devirtualize/devirtualize.go b/src/cmd/compile/internal/devirtualize/devirtualize.go index cfeb8d8ee9..b156b66312 100644 --- a/src/cmd/compile/internal/devirtualize/devirtualize.go +++ b/src/cmd/compile/internal/devirtualize/devirtualize.go @@ -4,11 +4,11 @@ // Package devirtualize implements two "devirtualization" optimization passes: // -// - "Static" devirtualization which replaces interface method calls with -// direct concrete-type method calls where possible. -// - "Profile-guided" devirtualization which replaces indirect calls with a -// conditional direct call to the hottest concrete callee from a profile, as -// well as a fallback using the original indirect call. +// - "Static" devirtualization which replaces interface method calls with +// direct concrete-type method calls where possible. +// - "Profile-guided" devirtualization which replaces indirect calls with a +// conditional direct call to the hottest concrete callee from a profile, as +// well as a fallback using the original indirect call. package devirtualize import ( -- cgit v1.3