Skip to content

Instantly share code, notes, and snippets.

@cristaloleg
Created July 12, 2018 19:05
Show Gist options
  • Save cristaloleg/4c4cface86a96ad826c840bc80b94ff9 to your computer and use it in GitHub Desktop.
Save cristaloleg/4c4cface86a96ad826c840bc80b94ff9 to your computer and use it in GitHub Desktop.
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