summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2016-04-30 00:50:26 +0000
committerLang Hames <lhames@gmail.com>2016-04-30 00:50:26 +0000
commitdf29078dc84e22ff99dc11dfe2c926a4098d4d81 (patch)
tree47e670979fbcb4502c33c2cf57ae27243c0529fd
parentcceacd7113112c9c46fe1d292745d4c1046ad998 (diff)
downloadbcm5719-llvm-df29078dc84e22ff99dc11dfe2c926a4098d4d81.tar.gz
bcm5719-llvm-df29078dc84e22ff99dc11dfe2c926a4098d4d81.zip
[Orc] Fix the AArch64 resolver size.
llvm-svn: 268146
-rw-r--r--llvm/include/llvm/ExecutionEngine/Orc/OrcArchitectureSupport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/ExecutionEngine/Orc/OrcArchitectureSupport.h b/llvm/include/llvm/ExecutionEngine/Orc/OrcArchitectureSupport.h
index 3adee86082c..3845021c44c 100644
--- a/llvm/include/llvm/ExecutionEngine/Orc/OrcArchitectureSupport.h
+++ b/llvm/include/llvm/ExecutionEngine/Orc/OrcArchitectureSupport.h
@@ -111,7 +111,7 @@ class OrcAArch64 {
public:
static const unsigned PointerSize = 8;
static const unsigned TrampolineSize = 12;
- static const unsigned ResolverCodeSize = 0x6C;
+ static const unsigned ResolverCodeSize = 0xA0;
typedef GenericIndirectStubsInfo<8> IndirectStubsInfo;
OpenPOWER on IntegriCloud