From: Sean Callanan Date: Thu, 1 Mar 2012 00:15:29 +0000 (+0000) Subject: Fixed the 32-bit runtime dynamic loader to allocate X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=996d6fdfb4242f935a8c97cbfa0af5ba6db4a743;p=oota-llvm.git Fixed the 32-bit runtime dynamic loader to allocate code sections when needed. It just had a conditional the wrong way around. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151777 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp index 4553ef42df7..c11b2c31c3f 100644 --- a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp +++ b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp @@ -150,7 +150,7 @@ loadSegment32(const MachOObject *Obj, // Allocate memory via the MM for the section. uint8_t *Buffer; uint32_t SectionID = Sections.size(); - if (Sect->Flags != 0x80000400) + if (Sect->Flags == 0x80000400) Buffer = MemMgr->allocateCodeSection(Sect->Size, Sect->Align, SectionID); else Buffer = MemMgr->allocateDataSection(Sect->Size, Sect->Align, SectionID);