[MCJIT] Fix the alignment requirements for ARM and AArch64 which were mistakenly
authorLang Hames <lhames@gmail.com>
Thu, 17 Jul 2014 23:11:30 +0000 (23:11 +0000)
committerLang Hames <lhames@gmail.com>
Thu, 17 Jul 2014 23:11:30 +0000 (23:11 +0000)
relaxed in the big RuntimeDyldMachO cleanup of r213293.

No test case yet - this was found via inspection and there's no easy way to test
GOT alignment in RuntimeDyldChecker at the moment. I'm working on adding support
for this now, and hope to have a test case for this soon.

llvm-svn: 213331

llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h

index c9fcede..9f48e44 100644 (file)
@@ -24,7 +24,7 @@ public:
 
   unsigned getMaxStubSize() override { return 8; }
 
-  unsigned getStubAlignment() override { return 1; }
+  unsigned getStubAlignment() override { return 8; }
 
   relocation_iterator
   processRelocationRef(unsigned SectionID, relocation_iterator RelI,
index 7e14992..1de9942 100644 (file)
@@ -23,7 +23,7 @@ public:
 
   unsigned getMaxStubSize() override { return 8; }
 
-  unsigned getStubAlignment() override { return 1; }
+  unsigned getStubAlignment() override { return 4; }
 
   relocation_iterator
   processRelocationRef(unsigned SectionID, relocation_iterator RelI,