diff options
author | Sean Eveson <eveson.sean@gmail.com> | 2018-01-17 09:01:29 +0000 |
---|---|---|
committer | Sean Eveson <eveson.sean@gmail.com> | 2018-01-17 09:01:29 +0000 |
commit | 2ae6037dd150893c6f54a67dcc4664003306ea8c (patch) | |
tree | c4e66ef713be34c62f034ef0d267dd77ef3dc53e /llvm/docs/CommandGuide | |
parent | 1913115204027ad779949094c454d704462e77d0 (diff) | |
download | bcm5719-llvm-2ae6037dd150893c6f54a67dcc4664003306ea8c.tar.gz bcm5719-llvm-2ae6037dd150893c6f54a67dcc4664003306ea8c.zip |
[MC] Fix -stack-size-section on ARM
Change symbol values in the stack_size section from being 8 bytes, to being a target dependent size.
Differential Revision: https://reviews.llvm.org/D42108
llvm-svn: 322619
Diffstat (limited to 'llvm/docs/CommandGuide')
-rw-r--r-- | llvm/docs/CommandGuide/llc.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/CommandGuide/llc.rst b/llvm/docs/CommandGuide/llc.rst index 95945e68d13..11dfc902d20 100644 --- a/llvm/docs/CommandGuide/llc.rst +++ b/llvm/docs/CommandGuide/llc.rst @@ -135,7 +135,7 @@ End-user Options .. option:: -stack-size-section Emit the .stack_sizes section which contains stack size metadata. The section - contains an array of pairs of function symbol references (8 byte) and stack + contains an array of pairs of function symbol values (pointer size) and stack sizes (unsigned LEB128). The stack size values only include the space allocated in the function prologue. Functions with dynamic stack allocations are not included. |