We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6399d21 commit 5dc980cCopy full SHA for 5dc980c
gopls/internal/test/integration/misc/webserver_test.go
@@ -605,16 +605,16 @@ func init() {
605
{
606
report := asmFor(`f\(123\)`)
607
checkMatch(t, true, report, `TEXT.*example.com/a.init`)
608
- checkMatch(t, true, report, `MOV. \$123`)
609
- checkMatch(t, true, report, `MOV. \$456`)
+ checkMatch(t, true, report, `MOV.? \$123`)
+ checkMatch(t, true, report, `MOV.? \$456`)
610
checkMatch(t, true, report, `CALL example.com/a.f`)
611
}
612
613
// And code in a source-level init function.
614
615
report := asmFor(`f\(789\)`)
616
617
- checkMatch(t, true, report, `MOV. \$789`)
+ checkMatch(t, true, report, `MOV.? \$789`)
618
619
620
})
0 commit comments