cmd/compile/internal/ir: add missing import to mknode.go

CL 426257 changed ioutil.WriteFile to os.WriteFile but didn't add the
corresponding import for package os.

Change-Id: I7be32138463b44aabc8e36ce353f6dc1376cbe60
Reviewed-on: https://go-review.googlesource.com/c/go/+/433415
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
Tobias Klauser 2022-09-23 11:36:26 +02:00 committed by Tobias Klauser
parent 7ed6073da0
commit 68fa3696b6
1 changed files with 1 additions and 0 deletions

View File

@ -19,6 +19,7 @@ import (
"go/token"
"io/fs"
"log"
"os"
"sort"
"strings"
)