From 65fe4970f5aa5b14fc194666e27dcad5cfc9013e Mon Sep 17 00:00:00 2001 From: Namhyung Kim Date: Thu, 26 Mar 2026 03:26:09 -0700 Subject: [PATCH] [analyzer][docs] Update uftrace option name (#188674) It should be `--flame-graph` instead of `--framegraph`. --- clang/docs/analyzer/developer-docs/PerformanceInvestigation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/docs/analyzer/developer-docs/PerformanceInvestigation.rst b/clang/docs/analyzer/developer-docs/PerformanceInvestigation.rst index 5d662cfb65be..9956f5577774 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``.