From: Tobias Klauser Date: Tue, 10 Apr 2018 07:57:14 +0000 (+0200) Subject: debug/elf: add missing EM_AARCH64 to machineStrings X-Git-Tag: go1.11beta1~902 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7cb7d62950630a5a878ee6665258275fc935ef2f;p=gostls13.git debug/elf: add missing EM_AARCH64 to machineStrings EM_AARCH64 is defined as a constant, but the corresponding entry in machineStrings is missing. Add it. Change-Id: I6506404386efe608877095e635a290bbc0686215 Reviewed-on: https://go-review.googlesource.com/106035 Run-TryBot: Tobias Klauser TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- diff --git a/src/debug/elf/elf.go b/src/debug/elf/elf.go index c8a4fe6e61..6f96b3e3bc 100644 --- a/src/debug/elf/elf.go +++ b/src/debug/elf/elf.go @@ -289,6 +289,7 @@ var machineStrings = []intName{ {60, "EM_ST100"}, {61, "EM_TINYJ"}, {62, "EM_X86_64"}, + {183, "EM_AARCH64"}, /* Non-standard or deprecated. */ {6, "EM_486"},