Merge "Teach mclinker that SHT_RELR sections are just relocations." am: ee8091affa

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

Change-Id: I7a3989728eca1ff317afc4b6441d4bd561d0dc3b
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;