[llvm] 11ccad6 - [docs] Make llvm-addr2line documentation more explicit about which

Richard Smith via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 31 12:45:05 PDT 2020


Author: Richard Smith
Date: 2020-03-31T12:44:45-07:00
New Revision: 11ccad6e879573f75dc8b231351ee23a17e0900f

URL: https://github.com/llvm/llvm-project/commit/11ccad6e879573f75dc8b231351ee23a17e0900f
DIFF: https://github.com/llvm/llvm-project/commit/11ccad6e879573f75dc8b231351ee23a17e0900f.diff

LOG: [docs] Make llvm-addr2line documentation more explicit about which
behavior is llvm-addr2line's and which is llvm-symbolizer's.

Added: 
    

Modified: 
    llvm/docs/CommandGuide/llvm-addr2line.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/CommandGuide/llvm-addr2line.rst b/llvm/docs/CommandGuide/llvm-addr2line.rst
index 4f5881dc8e89..27b0fd9a947b 100644
--- a/llvm/docs/CommandGuide/llvm-addr2line.rst
+++ b/llvm/docs/CommandGuide/llvm-addr2line.rst
@@ -17,17 +17,19 @@ GNU's :program:`addr2line`.
 
 Here are some of those 
diff erences:
 
--  Defaults not to print function names. Use `-f`_ to enable that.
+-  ``llvm-addr2line`` defaults not to print function names. Use `-f`_ to enable
+   that.
 
--  Defaults not to demangle function names. Use `-C`_ to switch the
-   demangling on.
+-  ``llvm-addr2line`` defaults not to demangle function names. Use `-C`_ to
+   switch the demangling on.
 
--  Defaults not to print inlined frames. Use `-i`_ to show inlined
-   frames for a source code location in an inlined function.
+-  ``llvm-addr2line`` defaults not to print inlined frames. Use `-i`_ to show
+   inlined frames for a source code location in an inlined function.
 
--  Uses `--output-style=GNU`_ by default.
+-  ``llvm-addr2line`` uses `--output-style=GNU`_ by default.
 
--  Parses options from the environment variable ``LLVM_ADDR2LINE_OPTS``.
+-  ``llvm-addr2line`` parses options from the environment variable
+   ``LLVM_ADDR2LINE_OPTS`` instead of from ``LLVM_SYMBOLIZER_OPTS``.
 
 SEE ALSO
 --------


        


More information about the llvm-commits mailing list