aboutsummaryrefslogtreecommitdiff
path: root/test/codegen/stack.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/codegen/stack.go')
-rw-r--r--test/codegen/stack.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/codegen/stack.go b/test/codegen/stack.go
index 4469b57449..7e12dbc0eb 100644
--- a/test/codegen/stack.go
+++ b/test/codegen/stack.go
@@ -87,9 +87,9 @@ func ArrayInit(i, j int) [4]int {
// Check that assembly output has matching offset and base register
// (issue #21064).
-// amd64:`.*b\+24\(SP\)`
-// arm:`.*b\+4\(FP\)`
func check_asmout(a, b int) int {
runtime.GC() // use some frame
+ // amd64:`.*b\+24\(SP\)`
+ // arm:`.*b\+4\(FP\)`
return b
}