-
-
Save cristaloleg/4c4cface86a96ad826c840bc80b94ff9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
switch arch.Family { | |
// ... ither case clause. | |
case sys.I386: | |
return elf.R_386(nr).String() | |
case sys.MIPS, sys.MIPS64: | |
// return elf.R_MIPS(nr).String() // <- 1 | |
case sys.PPC64: | |
// return elf.R_PPC64(nr).String() // <- 2 | |
case sys.S390X: | |
// return elf.R_390(nr).String() // <- 3 | |
default: | |
panic("unreachable") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment