Check section type rather than assuming it's code when emitting sections while proces...
authorAndrew Kaylor <andrew.kaylor@intel.com>
Fri, 12 Oct 2012 23:53:16 +0000 (23:53 +0000)
committerAndrew Kaylor <andrew.kaylor@intel.com>
Fri, 12 Oct 2012 23:53:16 +0000 (23:53 +0000)
llvm-svn: 165854

llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp

index 414957c..08aba64 100644 (file)
@@ -413,7 +413,13 @@ void RuntimeDyldELF::processRelocationRef(const ObjRelocationInfo &Rel,
           if (si == Obj.end_sections())
             llvm_unreachable("Symbol section not found, bad object file format!");
           DEBUG(dbgs() << "\t\tThis is section symbol\n");
-          Value.SectionID = findOrEmitSection(Obj, (*si), true, ObjSectionToID);
+          // Default to 'true' in case isText fails (though it never does).
+          bool isCode = true;
+          si->isText(isCode);
+          Value.SectionID = findOrEmitSection(Obj, 
+                                              (*si), 
+                                              isCode, 
+                                              ObjSectionToID);
           Value.Addend = Addend;
           break;
         }