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
7package codegen
8
9func issue63332(c chan int) {
10 x := 0
11 // amd64:-`MOVQ`
12 x += 2
13 c <- x
14}
15