From c18ddc84e1ec6406b26f7e9d0e1ee3d1908d7c27 Mon Sep 17 00:00:00 2001 From: Michael Pratt Date: Tue, 6 Feb 2024 15:37:51 -0500 Subject: [PATCH] cmd/compile: add missing colon in debug log Change-Id: Id76f4688a2ac45c1616d5c03274eec5d2108e555 Reviewed-on: https://go-review.googlesource.com/c/go/+/562156 Auto-Submit: Michael Pratt LUCI-TryBot-Result: Go LUCI Reviewed-by: Cherry Mui --- src/cmd/compile/internal/devirtualize/pgo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/compile/internal/devirtualize/pgo.go b/src/cmd/compile/internal/devirtualize/pgo.go index 170bf74673..5cc9fab54c 100644 --- a/src/cmd/compile/internal/devirtualize/pgo.go +++ b/src/cmd/compile/internal/devirtualize/pgo.go @@ -740,7 +740,7 @@ func findHotConcreteCallee(p *pgo.Profile, caller *ir.Func, call *ir.CallExpr, e } if base.Debug.PGODebug >= 2 { - fmt.Printf("%v call %s:%d: hottest callee %s (weight %d)\n", ir.Line(call), callerName, callOffset, hottest.Dst.Name(), hottest.Weight) + fmt.Printf("%v: call %s:%d: hottest callee %s (weight %d)\n", ir.Line(call), callerName, callOffset, hottest.Dst.Name(), hottest.Weight) } return hottest.Dst.AST, hottest.Weight } -- 2.48.1