diff options
author | Lang Hames <lhames@gmail.com> | 2016-02-05 23:27:48 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2016-02-05 23:27:48 +0000 |
commit | d677fa8332a1a201f56d56dc7e43c6fc61f4cffb (patch) | |
tree | b33b7ea398ca444ec80f44acba8df5eba2037ae2 | |
parent | 1d90b73a3dde28ca99797fad6f7ac15f2707bd30 (diff) | |
download | bcm5719-llvm-d677fa8332a1a201f56d56dc7e43c6fc61f4cffb.tar.gz bcm5719-llvm-d677fa8332a1a201f56d56dc7e43c6fc61f4cffb.zip |
[Orc] Fix a typo in the comments for the x86_64 resolver block.
llvm-svn: 259953
-rw-r--r-- | llvm/lib/ExecutionEngine/Orc/OrcArchitectureSupport.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/Orc/OrcArchitectureSupport.cpp b/llvm/lib/ExecutionEngine/Orc/OrcArchitectureSupport.cpp index 35cb2958f90..054fdadc800 100644 --- a/llvm/lib/ExecutionEngine/Orc/OrcArchitectureSupport.cpp +++ b/llvm/lib/ExecutionEngine/Orc/OrcArchitectureSupport.cpp @@ -36,7 +36,7 @@ void OrcX86_64::writeResolverCode(uint8_t *ResolverMem, JITReentryFn ReentryFn, 0x41, 0x55, // 0x14: pushq %r13 0x41, 0x56, // 0x16: pushq %r14 0x41, 0x57, // 0x18: pushq %r15 - 0x48, 0x81, 0xec, 0x08, 0x02, 0x00, 0x00, // 0x1a: subq 20, %rsp + 0x48, 0x81, 0xec, 0x08, 0x02, 0x00, 0x00, // 0x1a: subq 0x208, %rsp 0x48, 0x0f, 0xae, 0x04, 0x24, // 0x21: fxsave64 (%rsp) 0x48, 0x8d, 0x3d, 0x43, 0x00, 0x00, 0x00, // 0x26: leaq 67(%rip), %rdi 0x48, 0x8b, 0x3f, // 0x2d: movq (%rdi), %rdi @@ -50,7 +50,7 @@ void OrcX86_64::writeResolverCode(uint8_t *ResolverMem, JITReentryFn ReentryFn, 0xff, 0xd0, // 0x42: callq *%rax 0x48, 0x89, 0x45, 0x08, // 0x44: movq %rax, 8(%rbp) 0x48, 0x0f, 0xae, 0x0c, 0x24, // 0x48: fxrstor64 (%rsp) - 0x48, 0x81, 0xc4, 0x08, 0x02, 0x00, 0x00, // 0x4d: addq 20, %rsp + 0x48, 0x81, 0xc4, 0x08, 0x02, 0x00, 0x00, // 0x4d: addq 0x208, %rsp 0x41, 0x5f, // 0x54: popq %r15 0x41, 0x5e, // 0x56: popq %r14 0x41, 0x5d, // 0x58: popq %r13 |