Merge "Teach mclinker that SHT_RELR sections are just relocations." am: ee8091affa am: cf06b4a943 am: d8f7e0ee32 am: 3f42d04145

Original change: https://android-review.googlesource.com/c/platform/frameworks/compile/mclinker/+/1702185

Change-Id: I0f0f523930c216331ff34cad488d9ecaa26fd34c
diff --git a/lib/Core/IRBuilder.cpp b/lib/Core/IRBuilder.cpp
index 4c6eab8..3c3823e 100644
--- a/lib/Core/IRBuilder.cpp
+++ b/lib/Core/IRBuilder.cpp
@@ -82,6 +82,7 @@
       return LDFileFormat::NamePool;
     case llvm::ELF::SHT_RELA:
     case llvm::ELF::SHT_REL:
+    case 19 /*llvm::ELF::SHT_RELR*/:
       return LDFileFormat::Relocation;
     case llvm::ELF::SHT_NOBITS:
       return LDFileFormat::BSS;