Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 2 Nov 2018 18:40:01 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r340075 - head/contrib/elftoolchain/libelftc
Message-ID:  <201811021840.wA2Ie1vk082283@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Fri Nov  2 18:40:01 2018
New Revision: 340075
URL: https://svnweb.freebsd.org/changeset/base/340075

Log:
  readelf: decode R_MIPS_HIGHER and R_MIPS_HIGHEST relocation types
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/contrib/elftoolchain/libelftc/elftc_reloc_type_str.c

Modified: head/contrib/elftoolchain/libelftc/elftc_reloc_type_str.c
==============================================================================
--- head/contrib/elftoolchain/libelftc/elftc_reloc_type_str.c	Fri Nov  2 17:50:57 2018	(r340074)
+++ head/contrib/elftoolchain/libelftc/elftc_reloc_type_str.c	Fri Nov  2 18:40:01 2018	(r340075)
@@ -402,6 +402,8 @@ elftc_reloc_type_str(unsigned int mach, unsigned int t
 		case 22: return "R_MIPS_GOT_HI16";
 		case 23: return "R_MIPS_GOT_LO16";
 		case 24: return "R_MIPS_SUB";
+		case 28: return "R_MIPS_HIGHER";
+		case 29: return "R_MIPS_HIGHEST";
 		case 30: return "R_MIPS_CALLHI16";
 		case 31: return "R_MIPS_CALLLO16";
 		case 37: return "R_MIPS_JALR";



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811021840.wA2Ie1vk082283>