[PATCH] D72804: [xray] add --symbolize-mangled cli opt for llvm-xray extract to output mangled names

David Blaikie via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jan 15 13:19:26 PST 2020


dblaikie added a comment.

The usual "naming of things" - are there flags with similar functionality in other tools (like llvm-symbolizer) that might provide inspiration for consistent naming here (perhaps the name you've chosen already was inspired by that)?



================
Comment at: llvm/tools/llvm-xray/xray-extract.cpp:97-99
+  if (ExtractSymbolizeMangled) {
+    opts.Demangle = false;
+  }
----------------
Usually LLVM code skips {} on single statement blocks.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D72804/new/

https://reviews.llvm.org/D72804





More information about the llvm-commits mailing list