aboutsummaryrefslogtreecommitdiff
path: root/test/codegen/constants.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/codegen/constants.go')
-rw-r--r--test/codegen/constants.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/codegen/constants.go b/test/codegen/constants.go
index 178a106552..9b014b54b1 100644
--- a/test/codegen/constants.go
+++ b/test/codegen/constants.go
@@ -33,3 +33,12 @@ func contiguousMaskConstants() (out [64]uint64) {
out[3] = 0xFFFFFFFE00000001
return
}
+
+func issue76449_1() (_, _, _ uint64) {
+ // amd64:-"MOVQ"
+ return 0, 0, 0
+}
+func issue76449_2() (_, _, _ uint64) {
+ // amd64:-"MOVQ"
+ return 1, 2, 1
+}