diff options
| author | Russ Cox <rsc@golang.org> | 2014-12-05 19:13:20 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2014-12-05 19:13:20 -0500 |
| commit | 09d92b6bbf26f195a1fe136513238d227bc73f82 (patch) | |
| tree | 1c053dbb28cfcaf4cae911f24f096b581c384d4b /src/debug | |
| parent | dcb2ec3b654eb42d8e6bb6e66801ddf2f7f21c7a (diff) | |
| download | go-09d92b6bbf26f195a1fe136513238d227bc73f82.tar.xz | |
all: power64 is now ppc64
Fixes #8654.
LGTM=austin
R=austin
CC=golang-codereviews
https://golang.org/cl/180600043
Diffstat (limited to 'src/debug')
| -rw-r--r-- | src/debug/elf/elf.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/elf/elf.go b/src/debug/elf/elf.go index 46e9d5735d..0ead9792be 100644 --- a/src/debug/elf/elf.go +++ b/src/debug/elf/elf.go @@ -1414,7 +1414,7 @@ var rppcStrings = []intName{ func (i R_PPC) String() string { return stringName(uint32(i), rppcStrings, false) } func (i R_PPC) GoString() string { return stringName(uint32(i), rppcStrings, true) } -// Relocation types for PowerPC 64. +// Relocation types for 64-bit PowerPC or Power Architecture processors. type R_PPC64 int const ( |
