Skip to content

Commit af3bf86

Browse files
prattmicgopherbot
authored andcommitted
runtime: dump rdx on windows
CL 177090043 accidentally dropped RDX when converting from C. Change-Id: I6bf9dc1b1d0c2850967005c048245d1185dcede4 Reviewed-on: https://go-review.googlesource.com/c/go/+/526976 LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Cherry Mui <[email protected]> Auto-Submit: Michael Pratt <[email protected]>
1 parent dfbf809 commit af3bf86

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/runtime/defs_windows_amd64.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ func dumpregs(r *context) {
8080
print("rax ", hex(r.rax), "\n")
8181
print("rbx ", hex(r.rbx), "\n")
8282
print("rcx ", hex(r.rcx), "\n")
83+
print("rdx ", hex(r.rdx), "\n")
8384
print("rdi ", hex(r.rdi), "\n")
8485
print("rsi ", hex(r.rsi), "\n")
8586
print("rbp ", hex(r.rbp), "\n")

0 commit comments

Comments
 (0)