mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/compile: prefer base.Fatalf to panic in dwarfgen
Updates a few spots which call `panic` to instead call `base.Fatalf`.
Change-Id: I30b73c7994caa647245b0e253f20e0b88185e644
GitHub-Last-Rev: b3839bbe42
GitHub-Pull-Request: golang/go#74616
Reviewed-on: https://go-review.googlesource.com/c/go/+/688035
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Keith Randall <khr@google.com>
Auto-Submit: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
This commit is contained in:
parent
d71d8aeafd
commit
c641900f72
1 changed files with 2 additions and 2 deletions
|
|
@ -203,7 +203,7 @@ func createDwarfVars(fnsym *obj.LSym, complexOK bool, fn *ir.Func, apDecls []*ir
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if n.Class != ir.PPARAMOUT || !n.IsOutputParamInRegisters() {
|
if n.Class != ir.PPARAMOUT || !n.IsOutputParamInRegisters() {
|
||||||
panic("invalid ir.Name on debugInfo.RegOutputParams list")
|
base.Fatalf("invalid ir.Name on debugInfo.RegOutputParams list")
|
||||||
}
|
}
|
||||||
dcl = append(dcl, n)
|
dcl = append(dcl, n)
|
||||||
}
|
}
|
||||||
|
|
@ -583,7 +583,7 @@ func createHeapDerefLocationList(n *ir.Name, entryID ssa.ID) []byte {
|
||||||
// in the DWARF info.
|
// in the DWARF info.
|
||||||
func RecordFlags(flags ...string) {
|
func RecordFlags(flags ...string) {
|
||||||
if base.Ctxt.Pkgpath == "" {
|
if base.Ctxt.Pkgpath == "" {
|
||||||
panic("missing pkgpath")
|
base.Fatalf("missing pkgpath")
|
||||||
}
|
}
|
||||||
|
|
||||||
type BoolFlag interface {
|
type BoolFlag interface {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue