Source file test/codegen/issue63332.go
1 // asmcheck 2 3 // Copyright 2023 The Go Authors. All rights reserved. 4 // Use of this source code is governed by a BSD-style 5 // license that can be found in the LICENSE file. 6 7 package codegen 8 9 func issue63332(c chan int) { 10 x := 0 11 // amd64:-`MOVQ` 12 x += 2 13 c <- x 14 } 15