Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Jan 2017 21:28:23 +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: r311942 - head/contrib/elftoolchain/libelftc
Message-ID:  <201701112128.v0BLSNUV080275@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Wed Jan 11 21:28:22 2017
New Revision: 311942
URL: https://svnweb.freebsd.org/changeset/base/311942

Log:
  readelf: add more PPC64 relocation types found in LLVM
  
  MFC after:	2 weeks
  MFC with:	r311941
  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	Wed Jan 11 21:18:14 2017	(r311941)
+++ head/contrib/elftoolchain/libelftc/elftc_reloc_type_str.c	Wed Jan 11 21:28:22 2017	(r311942)
@@ -607,6 +607,12 @@ elftc_reloc_type_str(unsigned int mach, 
 		case 104: return "R_PPC64_DTPREL16_HIGHERA";
 		case 105: return "R_PPC64_DTPREL16_HIGHEST";
 		case 106: return "R_PPC64_DTPREL16_HIGHESTA";
+		case 107: return "R_PPC64_TLSGD";
+		case 108: return "R_PPC64_TLSLD";
+		case 249: return "R_PPC64_REL16";
+		case 250: return "R_PPC64_REL16_LO";
+		case 251: return "R_PPC64_REL16_HI";
+		case 252: return "R_PPC64_REL16_HA";
 		}
 		break;
 	case EM_RISCV:



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