[llvm] 39abe45 - RuntimeDyldELF.h - make the object namespace explicit for ELFObjectFileBase. NFC.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 23 05:54:49 PDT 2020


Author: Simon Pilgrim
Date: 2020-04-23T13:52:49+01:00
New Revision: 39abe45951ebf23e0b025bb2c537c4c715325239

URL: https://github.com/llvm/llvm-project/commit/39abe45951ebf23e0b025bb2c537c4c715325239
DIFF: https://github.com/llvm/llvm-project/commit/39abe45951ebf23e0b025bb2c537c4c715325239.diff

LOG: RuntimeDyldELF.h - make the object namespace explicit for ELFObjectFileBase. NFC.

Added: 
    

Modified: 
    llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h

Removed: 
    


################################################################################
diff  --git a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h
index ef0784e2273b..31892b7466e6 100644
--- a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h
+++ b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h
@@ -88,12 +88,13 @@ class RuntimeDyldELF : public RuntimeDyldImpl {
 
   void setMipsABI(const ObjectFile &Obj) override;
 
-  Error findPPC64TOCSection(const ELFObjectFileBase &Obj,
+  Error findPPC64TOCSection(const object::ELFObjectFileBase &Obj,
                             ObjSectionToIDMap &LocalSections,
                             RelocationValueRef &Rel);
-  Error findOPDEntrySection(const ELFObjectFileBase &Obj,
+  Error findOPDEntrySection(const object::ELFObjectFileBase &Obj,
                             ObjSectionToIDMap &LocalSections,
                             RelocationValueRef &Rel);
+
 protected:
   size_t getGOTEntrySize() override;
 


        


More information about the llvm-commits mailing list