[clang] 65fe497 - [analyzer][docs] Update uftrace option name (#188674)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Mar 26 03:26:14 PDT 2026
Author: Namhyung Kim
Date: 2026-03-26T10:26:09Z
New Revision: 65fe4970f5aa5b14fc194666e27dcad5cfc9013e
URL: https://github.com/llvm/llvm-project/commit/65fe4970f5aa5b14fc194666e27dcad5cfc9013e
DIFF: https://github.com/llvm/llvm-project/commit/65fe4970f5aa5b14fc194666e27dcad5cfc9013e.diff
LOG: [analyzer][docs] Update uftrace option name (#188674)
It should be `--flame-graph` instead of `--framegraph`.
Added:
Modified:
clang/docs/analyzer/developer-docs/PerformanceInvestigation.rst
Removed:
################################################################################
diff --git a/clang/docs/analyzer/developer-docs/PerformanceInvestigation.rst b/clang/docs/analyzer/developer-docs/PerformanceInvestigation.rst
index 5d662cfb65be2..9956f55777744 100644
--- a/clang/docs/analyzer/developer-docs/PerformanceInvestigation.rst
+++ b/clang/docs/analyzer/developer-docs/PerformanceInvestigation.rst
@@ -134,4 +134,4 @@ To see what functions appear frequently in the trace, use this command:
cat trace.json | grep -Po '"name":"(.+)"' | sort | uniq -c | sort -nr | head -n 50
-``uftrace`` can also dump the report as a Flame graph using ``uftrace dump --framegraph``.
+``uftrace`` can also dump the report as a Flame graph using ``uftrace dump --flame-graph``.
More information about the cfe-commits
mailing list