diff options
author | Douglas Yung <douglas.yung@sony.com> | 2019-01-24 00:34:09 +0000 |
---|---|---|
committer | Douglas Yung <douglas.yung@sony.com> | 2019-01-24 00:34:09 +0000 |
commit | 7876c0ecf22f291fcbaf9ba507bad31e3d0bf1c4 (patch) | |
tree | 0c6500f60da50703101c68b9ebc4a4c1a9544043 /llvm/docs/CommandGuide/llvm-symbolizer.rst | |
parent | addb7ab2ae2234b4b49e3f29e72762d8ee90bcef (diff) | |
download | bcm5719-llvm-7876c0ecf22f291fcbaf9ba507bad31e3d0bf1c4.tar.gz bcm5719-llvm-7876c0ecf22f291fcbaf9ba507bad31e3d0bf1c4.zip |
[llvm-symbolizer] Add support for -i and -inlines as aliases for -inlining
This change adds two options, -i and -inlines as aliases for the -inlining option to llvm-symbolizer to improve compatibility with the GNU addr2line utility which accepts these options.
It also modifies existing tests that use -inlining to exercise these new aliases as well.
This fixes PR40073.
Reviewed by: jhenderson, Quolyk, ruiu
Differential Revision: https://reviews.llvm.org/D57083
llvm-svn: 351999
Diffstat (limited to 'llvm/docs/CommandGuide/llvm-symbolizer.rst')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-symbolizer.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/CommandGuide/llvm-symbolizer.rst b/llvm/docs/CommandGuide/llvm-symbolizer.rst index 2e69a20442c..afd94483a42 100644 --- a/llvm/docs/CommandGuide/llvm-symbolizer.rst +++ b/llvm/docs/CommandGuide/llvm-symbolizer.rst @@ -91,7 +91,7 @@ OPTIONS Don't print demangled function names. -.. option:: -inlining +.. option:: -inlining, -inlines, -i If a source code location is in an inlined function, prints all the inlnied frames. Defaults to true. |