[ARM] MVE compare vector splat combine
[llvm-complete.git] / docs / CommandGuide / llvm-addr2line.md
blob03224c43d165faf19a63ec8b99cd79aeb793b36e
1 # llvm-addr2line - a drop-in replacement for addr2line
3 ## SYNOPSIS
5 **llvm-addr2line** [*options*]
7 ## DESCRIPTION
9 **llvm-addr2line** is an alias for the [llvm-symbolizer](llvm-symbolizer) tool
10 with different defaults. The goal is to make it a drop-in replacement for
11 GNU's **addr2line**.
13 Here are some of those differences:
15 * Defaults not to print function names. Use [-f](llvm-symbolizer-opt-f)
16   to enable that.
18 * Defaults not to demangle function names. Use [-C](llvm-symbolizer-opt-C)
19   to switch the demangling on.
21 * Defaults not to print inlined frames. Use [-i](llvm-symbolizer-opt-i)
22   to show inlined frames for a source code location in an inlined function.
24 * Uses [--output-style=GNU](llvm-symbolizer-opt-output-style) by default.
26 ## SEE ALSO
28 Refer to [llvm-symbolizer](llvm-symbolizer) for additional information.